bt2: Add `_Clock*Const` classes and adapt tests
[babeltrace.git] / tests / bindings / python / bt2 / test_package.py
index 051423f660abab584821d2c1e267091a814bdb40..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')
@@ -81,6 +81,12 @@ class PackageTestCase(unittest.TestCase):
     def test_has_EventClassLogLevel(self):
         self._assert_in_bt2('EventClassLogLevel')
 
+    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')
 
@@ -108,6 +114,9 @@ class PackageTestCase(unittest.TestCase):
     def test_has__StructureField(self):
         self._assert_in_bt2('_StructureField')
 
+    def test_has__OptionField(self):
+        self._assert_in_bt2('_VariantField')
+
     def test_has__VariantField(self):
         self._assert_in_bt2('_VariantField')
 
@@ -123,6 +132,12 @@ class PackageTestCase(unittest.TestCase):
     def test_has_IntegerDisplayBase(self):
         self._assert_in_bt2('IntegerDisplayBase')
 
+    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')
 
@@ -150,6 +165,9 @@ class PackageTestCase(unittest.TestCase):
     def test_has__StructureFieldClass(self):
         self._assert_in_bt2('_StructureFieldClass')
 
+    def test_has__OptionFieldClass(self):
+        self._assert_in_bt2('_OptionFieldClass')
+
     def test_has__VariantFieldClass(self):
         self._assert_in_bt2('_VariantFieldClass')
 
@@ -183,6 +201,12 @@ class PackageTestCase(unittest.TestCase):
     def test_has__CurrentArrayElementFieldPathItem(self):
         self._assert_in_bt2('_CurrentArrayElementFieldPathItem')
 
+    def test_has__CurrentOptionContentFieldPathItem(self):
+        self._assert_in_bt2('_CurrentOptionContentFieldPathItem')
+
+    def test_has_ComponentDescriptor(self):
+        self._assert_in_bt2('ComponentDescriptor')
+
     def test_has_Graph(self):
         self._assert_in_bt2('Graph')
 
@@ -258,6 +282,9 @@ class PackageTestCase(unittest.TestCase):
     def test_has_QueryExecutor(self):
         self._assert_in_bt2('QueryExecutor')
 
+    def test_has_AutoSourceComponentSpec(self):
+        self._assert_in_bt2('AutoSourceComponentSpec')
+
     def test_has_ComponentSpec(self):
         self._assert_in_bt2('ComponentSpec')
 
@@ -291,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.026401 seconds and 4 git commands to generate.