bt2: Add `_Clock*Const` classes and adapt tests
[babeltrace.git] / tests / bindings / python / bt2 / test_package.py
index bcf30fed5808e0beab311d43d933153644c6631e..52d5dc67bbcb9bd355010a85f3fa50507c2a5035 100644 (file)
@@ -27,8 +27,8 @@ class PackageTestCase(unittest.TestCase):
     def test_has_ClockClassOffset(self):
         self._assert_in_bt2('ClockClassOffset')
 
-    def test_has__ClockSnapshot(self):
-        self._assert_in_bt2('_ClockSnapshot')
+    def test_has__ClockSnapshotConst(self):
+        self._assert_in_bt2('_ClockSnapshotConst')
 
     def test_has__UnknownClockSnapshot(self):
         self._assert_in_bt2('_UnknownClockSnapshot')
@@ -84,6 +84,9 @@ class PackageTestCase(unittest.TestCase):
     def test_has__BoolField(self):
         self._assert_in_bt2('_BoolField')
 
+    def test_has__BitArrayField(self):
+        self._assert_in_bt2('_BitArrayField')
+
     def test_has__IntegerField(self):
         self._assert_in_bt2('_IntegerField')
 
@@ -132,6 +135,9 @@ class PackageTestCase(unittest.TestCase):
     def test_has__BoolFieldClass(self):
         self._assert_in_bt2('_BoolFieldClass')
 
+    def test_has__BitArrayFieldClass(self):
+        self._assert_in_bt2('_BitArrayFieldClass')
+
     def test_has__IntegerFieldClass(self):
         self._assert_in_bt2('_IntegerFieldClass')
 
@@ -312,5 +318,29 @@ class PackageTestCase(unittest.TestCase):
     def test_has_MapValue(self):
         self._assert_in_bt2('MapValue')
 
+    def test_has_BoolValueConst(self):
+        self._assert_in_bt2('_BoolValueConst')
+
+    def test_has__IntegerValueConst(self):
+        self._assert_in_bt2('_IntegerValueConst')
+
+    def test_has_UnsignedIntegerValueConst(self):
+        self._assert_in_bt2('_UnsignedIntegerValueConst')
+
+    def test_has_SignedIntegerValueConst(self):
+        self._assert_in_bt2('_SignedIntegerValueConst')
+
+    def test_has_RealValueConst(self):
+        self._assert_in_bt2('_RealValueConst')
+
+    def test_has_StringValueConst(self):
+        self._assert_in_bt2('_StringValueConst')
+
+    def test_has_ArrayValueConst(self):
+        self._assert_in_bt2('_ArrayValueConst')
+
+    def test_has_MapValueConst(self):
+        self._assert_in_bt2('_MapValueConst')
+
     def test_has___version__(self):
         self._assert_in_bt2('__version__')
This page took 0.027507 seconds and 4 git commands to generate.