summaryrefslogtreecommitdiff
path: root/tests/dummyatk
Commit message (Collapse)AuthorAgeFilesLines
* Fix old FSF addressMike Gorse2019-08-2727-54/+54
|
* Cast the g_object_ref() resultEmmanuele Bassi2018-05-171-2/+2
| | | | | | Starting for GLib 2.54, g_object_ref() warns if we acquire a reference on a variable of a certain type, and assign the result to a variable of a different type.
* Return the appropriate valueEmmanuele Bassi2018-05-171-1/+1
| | | | | The precondition check for a function returning a boolean should not return NULL.
* Drop autotools supportMike Gorse2017-10-301-44/+0
|
* autotools: dist some missing meson.build filesMike Gorse2017-10-301-0/+2
|
* Add Meson build systemwip/mesonEmmanuele Bassi2017-05-231-0/+23
| | | | | | | Meson is a fast, portable, easy to understand meta-build system. It is currently being adopted in various projects inside GNOME alongside Autotools, in the hope of making it the default build system for future releases.
* Fix Position getter for table cellsMike Gorse2017-03-241-1/+1
|
* New tests for last interfacesPatryk Kaczmarek2015-11-2314-0/+2036
| | | | | | | | | | | * Tested interfaces: - Document - Hyperlink - Hypertext - Selectoin - State Set - Table - Table Cell
* Next tests for accessible interfacesPatryk Kaczmarek2015-11-1812-7/+1140
| | | | | | | | | | | | * New tested interfaces: - Collection - EditableText - Image - Text - Value * Commented tests for depricated function in Component tests deleted * Unused variables deleted * Added compilation flag -Wall
* Component interface testsPatryk Kaczmarek2015-03-065-3/+302
|
* Action tests added and some test framework refactorPatryk Kaczmarek2015-02-166-43/+367
| | | | | | | | | | * Accessible Action Test addded * XML loader unificated for different Atk Object types * Atk Suite now can run single interface tests * get_root_obj function changed * Created tests utils for test unification * Makefile.am files formating changed and unused parts deleted * MyAtkObject attributes receiving fixed
* Unit test frameworkPatryk Kaczmarek2014-12-094-0/+273
| | | | | * New test framework for testing Atspi library * https://bugzilla.gnome.org/show_bug.cgi?id=730505
* 2009-07-10 Mark Doffman <mark.doffman@codethink.co.uk>Mark Doffman2009-10-0728-3864/+0
| | | | | Remove pyatspi and the pyatspi tests that have been moved out into a separate repository.
* 2008-08-27 Mark Doffman <mark.doffman@codethink.co.uk>Mark Doffman2008-08-271-0/+1
| | | | | * tests/dummyatk/Makefile.am Add missing header (my-atk.h) to fix 'make distcheck' error.
* 2008-08-23 Mark Doffman <mark.doffman@codethink.co.uk>Mark Doffman2008-08-232-4/+4
| | | | | | * tests/pyatspi/ pyatspi/ Add an action interface and unit test
* 2008-08-22 Mark Doffman <mark.doffman@codethink.co.uk>Mark Doffman2008-08-222-0/+37
| | | | | | | | | | | * pyatspi/state.py tests/pyatspi/statetest.py tests/apps/accessible-app.c Add a stateset unit test. * tests/dummyatk/* tests/pyatspi/accessibletest.py Add a more complete getAttributes test.
* 2008-08-18 Mark Doffman <mark.doffman@codethink.co.uk>Mark Doffman2008-08-181-6/+3
| | | | | | | | | | | | | | | | | | | | * tests/data/ Add a description attribute to the root accessible for testing the description property. * tests/dummyatk/my-atk-object.c Fix the add_child function to correctly set a childs parent. * tests/pyatspi/Pasy.py Pass a test function its own test object. * tests/pyatspi/accessibletest.py Add getState test to the Accessible unit test. * tests/pyatspi/testrunner.py Modify to enable waiting on test application for debug.
* 2008-06-02 Mark Doffman <mark.doffman@codethink.co.uk>Mark Doffman2008-06-032-5/+7
| | | | | | | | | | * pyatspi --> python/pyatspi Move the accessible_cache out of test and into the python directory. Move pyatspi to a subdirectory from here. * tests/clients Add a framework for invoking and testing the atk adaptor using the test applications.
* 2008-05-29 Mark Doffman <mark.doffman@codethink.co.uk>Mark Doffman2008-05-2914-12/+676
| | | | | | | | | | | * my-atk-* Modify some of the objects to have MyAtkObject as their parent rather than GObject. This is so they can act as a standard accessible as well as implementing their own specialised interface. * my-atk-selection* my-atk-table* Add two new interfaces, taken from LSB test suite.
* 2008-05-28 Mark Doffman <mark.doffman@codethink.co.uk>Mark Doffman2008-05-2824-0/+3163
* tests/dummyatk Rework the LSB dummy implementation, taken from atk-tests. This is a very simple atk implementation for the purpose of testing at-spi. * tests/testapps Add a test framework for applications used in testing at-spi. Tests will generally make use of the dummy atk implmentaion.