diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-02-16 13:37:39 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-02-16 13:37:39 +0100 |
commit | 510369e27aca89da08d99b90710a9bc419315063 (patch) | |
tree | 7b182886c124b976c6c5da117d32ab38c72d9fe8 /test | |
parent | 71c77c9427a399ce23e42a7982a2d7bbd53598d3 (diff) | |
download | uca-510369e27aca89da08d99b90710a9bc419315063.tar.gz uca-510369e27aca89da08d99b90710a9bc419315063.tar.bz2 uca-510369e27aca89da08d99b90710a9bc419315063.tar.xz uca-510369e27aca89da08d99b90710a9bc419315063.zip |
Remove binnings test
Diffstat (limited to 'test')
-rw-r--r-- | test/test-mock.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/test-mock.c b/test/test-mock.c index 0563197..2efc543 100644 --- a/test/test-mock.c +++ b/test/test-mock.c @@ -233,21 +233,6 @@ test_property_units (Fixture *fixture, gconstpointer data) } static void -test_binnings_properties (Fixture *fixture, gconstpointer data) -{ - UcaCamera *camera = UCA_CAMERA (fixture->camera); - - GValueArray *array = NULL; - g_object_get (G_OBJECT (camera), - "sensor-horizontal-binnings", &array, - NULL); - - GValue *value = g_value_array_get_nth (array, 0); - g_assert (value != NULL); - g_assert (g_value_get_uint (value) == 1); -} - -static void test_signal (Fixture *fixture, gconstpointer data) { UcaCamera *camera = UCA_CAMERA (fixture->camera); @@ -356,7 +341,6 @@ int main (int argc, char *argv[]) {"/recording/buffered", test_recording_buffered}, {"/properties/base", test_base_properties}, {"/properties/recording", test_recording_property}, - {"/properties/binnings", test_binnings_properties}, {"/properties/frames-per-second", test_fps_property}, {"/properties/units", test_property_units}, {"/properties/units/overwrite", test_overwriting_units}, |