X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Fbindings%2Fpython%2Fbt2%2Ftest_package.py;h=52d5dc67bbcb9bd355010a85f3fa50507c2a5035;hb=eddea57540fc76d56c8d38bdfc330c8b9f5b4961;hp=051423f660abab584821d2c1e267091a814bdb40;hpb=6c0b3817e625425be12f7ed0596d31453e75ea63;p=babeltrace.git diff --git a/tests/bindings/python/bt2/test_package.py b/tests/bindings/python/bt2/test_package.py index 051423f6..52d5dc67 100644 --- a/tests/bindings/python/bt2/test_package.py +++ b/tests/bindings/python/bt2/test_package.py @@ -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__')