mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-22 18:07:54 +02:00
gtestutils: add g_test_add_data_func_full()
Like g_test_add_data_func(), but includes a GDestroyNotify for the test data. https://bugzilla.gnome.org/show_bug.cgi?id=682560
This commit is contained in:
@@ -1510,9 +1510,37 @@ g_test_add_data_func (const char *testpath,
|
||||
g_return_if_fail (testpath != NULL);
|
||||
g_return_if_fail (testpath[0] == '/');
|
||||
g_return_if_fail (test_func != NULL);
|
||||
|
||||
g_test_add_vtable (testpath, 0, test_data, NULL, (GTestFixtureFunc) test_func, NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
* g_test_add_data_func_full:
|
||||
* @testpath: /-separated test case path name for the test.
|
||||
* @test_data: Test data argument for the test function.
|
||||
* @test_func: The test function to invoke for this test.
|
||||
* @data_free_func: #GDestroyNotify for @test_data.
|
||||
*
|
||||
* Create a new test case, as with g_test_add_data_func(), but freeing
|
||||
* @test_data after the test run is complete.
|
||||
*
|
||||
* Since: 2.34
|
||||
*/
|
||||
void
|
||||
g_test_add_data_func_full (const char *testpath,
|
||||
gpointer test_data,
|
||||
GTestDataFunc test_func,
|
||||
GDestroyNotify data_free_func)
|
||||
{
|
||||
g_return_if_fail (testpath != NULL);
|
||||
g_return_if_fail (testpath[0] == '/');
|
||||
g_return_if_fail (test_func != NULL);
|
||||
|
||||
g_test_add_vtable (testpath, 0, test_data, NULL,
|
||||
(GTestFixtureFunc) test_func,
|
||||
(GTestFixtureFunc) data_free_func);
|
||||
}
|
||||
|
||||
/**
|
||||
* g_test_create_suite:
|
||||
* @suite_name: a name for the suite
|
||||
|
Reference in New Issue
Block a user