aboutsummaryrefslogtreecommitdiff
path: root/src/unittest/test.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revert 6587 - Optimize entity-entity collision (#7539)lhofhansl2018-07-081-4/+0
|
* Optimize entity-entity collision (#6587)Vitaliy2018-04-031-0/+4
| | | | | | * Add IrrLicht type aliases * Add hash for IrrLicht vector * Add object map
* Modernize source code: last part (#6285)Loïc Blot2017-08-201-4/+4
| | | | | | | | | | | * Modernize source code: last par * Use empty when needed * Use emplace_back instead of push_back when needed * For range-based loops * Initializers fixes * constructors, destructors default * c++ C stl includes
* Code modernization: subfolders (#6283)Loïc Blot2017-08-191-8/+6
| | | | | | | | | | | | | * Code modernization: subfolders Modernize various code on subfolders client, network, script, threading, unittests, util * empty function * default constructor/destructor * for range-based loops * use emplace_back instead of push_back * C++ STL header style * Make connection.cpp readable in a pointed place + typo
* C++ modernize: Pragma once (#6264)Loïc Blot2017-08-171-4/+1
| | | | * Migrate cpp headers to pragma once
* Time: Change old `u32` timestamps to 64-bit (#5818)SmallJoker2017-05-261-2/+2
| | | | MacOSX build fix + cleanups
* Remove some abort() callsest312015-10-261-1/+1
| | | | abort() doesn't benefit from the high level abstractions from FATAL_ERROR.
* Refactor loggingShadowNinja2015-10-141-44/+45
| | | | | | | | | - Add warning log level - Change debug_log_level setting to enumeration string - Map Irrlicht log events to MT log events - Encapsulate log_* functions and global variables into a class, Logger - Unify dstream with standard logging mechanism - Unify core.debug() with standard core.log() script API
* tests: Log exceptions thrown inside of unit testskwolekr2015-07-311-12/+16
|
* Tests: Add schematic unittestskwolekr2015-05-081-0/+6
| | | | | Improve schematic file-saving interface Add ability to create temporary test files
* Tests: Add NodeResolver unittestskwolekr2015-05-051-3/+6
| | | | | | Minor misc. NodeResolver cleanups Prefix faux content type constants for testing with t_ to avoid confusion or name collisions
* Tests: Add random unittestskwolekr2015-04-291-1/+1
|
* Tests: Modularize unit testingkwolekr2015-04-261-0/+133
Split unit tests into separate files under src/unittest/ Give better unittest diagnostics Clean up some code