summaryrefslogtreecommitdiff
path: root/test/run-tests.c
Commit message (Collapse)AuthorAge
* Identify app ID for tests with getpid()Philip Chimento2013-10-09
| | | | | | In order to prevent collisions between configuration directories, the test applications get unique IDs from not just g_get_real_time(), but also getpid()
* Run all tests with unique application IDPhilip Chimento2013-09-26
| | | | | | | Running tests with the same application ID causes DBus collisions. Apparently this did not cause problems until now. [endlessm/eos-sdk#303]
* Add EosFlexyGrid test unitEmmanuele Bassi2013-09-19
| | | | | | Begin by testing the basic accessors and construction. [endlessm/eos-sdk#1015]
* Add tests for new public APIPhilip Chimento2013-06-29
| | | | [endlessm/eos-sdk#133]
* Skeleton for EosActionMenu tests.Felipe Erias Morandeira2013-06-21
| | | | [endlessm/eos-sdk#79]
* Fixed up main area tests to be more robust.Matt Watson2013-06-12
| | | | [endlessm/eos-sdk#88]
* Added test for the splash page manager.Matt Watson2013-06-03
| | | | | | Unfortunately, most of the getter setter test fail and are commented out, because of the remove bug in EosPageManager. [endlessm/eos-sdk#62]
* Implement EosPageManagerP. F. Chimento2013-05-13
| | | | | | | Minimum functionality for EosPageManager. Currently uses a GtkNotebook internally until we decide what to do regarding GtkStack. (Philip; map/unmap Matt, Patrick)
* Test fixture for testing an application windowP. F. Chimento2013-04-24
| | | | | | | | | Test harness improvement: ADD_APP_WINDOW_TEST(test_path, test_func) creates an EosApplication and connects test_func() to the "startup" handler of the application, then runs it. Commented out /application/two-windows test, because it's apparently not deterministic.
* Application classP. F. Chimento2013-04-24
| | | | | | | | | Add an EosApplication class. Functionality: - present main application window when activated - warn if more than one application window is added Also add a stub EosWindow class that overrides GtkWindow's "application" property to be a construct-only property. [#4]
* Add test frameworkPhilip Chimento2013-04-17
There are automated tests which run when you do 'make check', and also smoke tests which demonstrate one piece of functionality, which can be used as a sort of sanity check or demo. [#1]