30 lines
596 B
C
30 lines
596 B
C
|
#include <clutter/clutter.h>
|
||
|
|
||
|
#include "test-conform-common.h"
|
||
|
|
||
|
/**
|
||
|
* test_conform_simple_fixture_setup:
|
||
|
*
|
||
|
* Initialise stuff before each test is run
|
||
|
*/
|
||
|
void
|
||
|
test_conform_simple_fixture_setup (TestConformSimpleFixture *fixture,
|
||
|
gconstpointer data)
|
||
|
{
|
||
|
/* const TestConformSharedState *shared_state = data; */
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* test_conform_simple_fixture_teardown:
|
||
|
*
|
||
|
* Cleanup stuff after each test has finished
|
||
|
*/
|
||
|
void
|
||
|
test_conform_simple_fixture_teardown (TestConformSimpleFixture *fixture,
|
||
|
gconstpointer data)
|
||
|
{
|
||
|
/* const TestConformSharedState *shared_state = data; */
|
||
|
}
|
||
|
|