summaryrefslogtreecommitdiffstats
path: root/test/unit/ui
Commit message (Collapse)AuthorAgeFilesLines
* Better CMake organization and unit test cleanupsPiotr Dziwinski2014-08-128-559/+0
| | | | | | | * created a static library containing most source modules to avoid compiling source modules twice in code and unit tests * moved profile_test to main unit tests executable * removed image_test and edit_test as not really useful
* Fixed testskrzys-h2014-06-261-7/+13
|
* Fix test compilationPiotr Dziwinski2014-06-242-10/+1
|
* Some further refactoring and test correctionsPiotr Dziwinski2013-12-203-5/+16
|
* Add a PLATFORM_GNU global variable matching all GNU systems such as Debian's ↵Didier Raboud2013-11-271-2/+0
| | | | Linux, kFreeBSD and Hurd
* Consolidate SYSTEM_CPP_MODULE in the main CMakeLists.txtDidier 'OdyX' Raboud2013-11-201-4/+1
|
* MacOSX: Add initial support in CMake build infraDidier 'OdyX' Raboud2013-10-241-0/+3
|
* Fixed test binaries locationPiotr Dziwinski2013-06-291-1/+1
|
* Some further changes in CMakeListsPiotr Dziwinski2013-06-241-2/+2
| | | | | | * removed DEV_BUILD autodetection (could be confusing) * ignore desktop subdirectory on Windows * some refactoring
* Changes in build organizationPiotr Dziwinski2013-06-221-1/+4
| | | | | | | | * targets are now created in top-level build directory * more things are now configured through CMake options * changed debug build detection from NDEBUG to DEV_BUILD * moved po and desktop directories * moved last unit test out of src directory
* Enhanced logging, option to auto-start missionPiotr Dziwinski2013-06-161-1/+1
| | | | | | | | | * added logging of application events * changed debug mode flag to independent debug modes * added option to auto-start mission (load a mission immediately after startup) * removed "enum value out of range" prints * some refactoring
* Fixed app_stubPiotr Dziwinski2013-05-271-3/+3
|
* Fixed testskrzys-h2013-05-042-2/+2
|
* Sorry, I've meant colobot_ut!krzys-h2013-04-271-1/+1
|
* Commented out edit_testkrzys-h2013-04-271-1/+1
| | | | because Travis is still failing
* * Changed order of libs in cmake for clipboarderihel2013-04-201-3/+3
|
* * Added clipboard support (issue #60)erihel2013-04-111-1/+7
| | | | * Fixed keyboard shortcuts while code editing in game
* * Fixed and turned on edit_testerihel2013-03-292-24/+24
|
* OK, I give up.krzys-h2013-03-291-23/+23
|
* Nope, now fixed edit_test!krzys-h2013-03-291-1/+1
|
* Fixed edit_testkrzys-h2013-03-292-23/+28
|
* Tests are broken againkrzys-h2013-03-291-23/+23
|
* Fixed edit_testPiotr Dziwinski2013-03-274-24/+54
|
* BROWN-PAPER COMMIT: Drop the tests to have the thing buildDidier Raboud2013-03-271-20/+20
| | | | Someone understanding GMock / GTest needs to replace that commit (and the two parents) with a working setup
* Fixed timer functions on win32Piotr Dziwinski2013-03-241-0/+5
| | | | | | | * changed win32 implementation to QueryPerformaceTimer system function * refactored system utils code * proper tests for time utils and update event creation in application * should fix issue #134
* * Fixed app stub in edit testerihel2013-03-172-0/+5
|
* Better light sortingPiotr Dziwinski2013-02-251-0/+17
| | | | Should fix lighting issue (#62)
* CInstanceManager refactoringPiotr Dziwiński2013-02-176-14/+32
| | | | | | | | | * removed classes managed by CInstanceManager except for CObject, CPyro, CBrain and CPhysics because of dependencies * refactored instance searching to use existing singleton instances of CApplication, CEngine and CRobotMain and calling their getter functions
* Comment the test that fails, with a TODO.Didier Raboud2013-02-141-1/+2
|
* Refactoring in tests infrastructurePiotr Dziwinski2013-02-038-0/+463
* all tests are now in /test/ subdirectory * unit tests concatenated to one executable (TODO: ui, common) * preparation for test environments (OpenGL and others) * removed old TestCBot