bt2: Add `*ValueConst` classes and adapt tests
[babeltrace.git] / tests / bindings / python / bt2 / test_package.py
index 836aa0a484a83937a6688df3c8926abd2950d1ab..21ffe08446098a6e1fb3675c3eff5c6d4615166e 100644 (file)
@@ -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')
 
@@ -111,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')
 
@@ -129,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')
 
@@ -156,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')
 
@@ -189,6 +201,9 @@ 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')
 
@@ -303,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.024876 seconds and 4 git commands to generate.