X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Fbindings%2Fpython%2Fbt2%2Ftest_package.py;h=21ffe08446098a6e1fb3675c3eff5c6d4615166e;hb=e42e1587604ec69593e13503e623688fe26ba1d1;hp=836aa0a484a83937a6688df3c8926abd2950d1ab;hpb=aae30e61f85f6654c37da7a5da3b22fbbe2dbd5c;p=babeltrace.git diff --git a/tests/bindings/python/bt2/test_package.py b/tests/bindings/python/bt2/test_package.py index 836aa0a4..21ffe084 100644 --- a/tests/bindings/python/bt2/test_package.py +++ b/tests/bindings/python/bt2/test_package.py @@ -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__')