lib: split real FC/field into single and double prec FC/field
[babeltrace.git] / tests / bindings / python / bt2 / test_package.py
index c83ea1481632cbb49d810218e5858301143a925d..c3295c8a33cb8ed2b14cd8496c443ad9a145c46d 100644 (file)
@@ -33,23 +33,23 @@ class PackageTestCase(unittest.TestCase):
     def test_has__UnknownClockSnapshot(self):
         self._assert_in_bt2('_UnknownClockSnapshot')
 
-    def test_has__SourceComponentClass(self):
-        self._assert_in_bt2('_SourceComponentClass')
+    def test_has__SourceComponentClassConst(self):
+        self._assert_in_bt2('_SourceComponentClassConst')
 
-    def test_has__FilterComponentClass(self):
-        self._assert_in_bt2('_FilterComponentClass')
+    def test_has__FilterComponentClassConst(self):
+        self._assert_in_bt2('_FilterComponentClassConst')
 
-    def test_has__SinkComponentClass(self):
-        self._assert_in_bt2('_SinkComponentClass')
+    def test_has__SinkComponentClassConst(self):
+        self._assert_in_bt2('_SinkComponentClassConst')
 
-    def test_has__SourceComponent(self):
-        self._assert_in_bt2('_SourceComponent')
+    def test_has__SourceComponentConst(self):
+        self._assert_in_bt2('_SourceComponentConst')
 
-    def test_has__FilterComponent(self):
-        self._assert_in_bt2('_FilterComponent')
+    def test_has__FilterComponentConst(self):
+        self._assert_in_bt2('_FilterComponentConst')
 
-    def test_has__SinkComponent(self):
-        self._assert_in_bt2('_SinkComponent')
+    def test_has__SinkComponentConst(self):
+        self._assert_in_bt2('_SinkComponentConst')
 
     def test_has__UserSourceComponent(self):
         self._assert_in_bt2('_UserSourceComponent')
@@ -99,6 +99,12 @@ class PackageTestCase(unittest.TestCase):
     def test_has__RealField(self):
         self._assert_in_bt2('_RealField')
 
+    def test_has__SinglePrecisionRealField(self):
+        self._assert_in_bt2('_SinglePrecisionRealField')
+
+    def test_has__DoublePrecisionRealField(self):
+        self._assert_in_bt2('_DoublePrecisionRealField')
+
     def test_has__EnumerationField(self):
         self._assert_in_bt2('_EnumerationField')
 
@@ -147,6 +153,12 @@ class PackageTestCase(unittest.TestCase):
     def test_has__RealFieldConst(self):
         self._assert_in_bt2('_RealFieldConst')
 
+    def test_has__SinglePrecisionRealFieldConst(self):
+        self._assert_in_bt2('_SinglePrecisionRealFieldConst')
+
+    def test_has__DoublePrecisionRealFieldConst(self):
+        self._assert_in_bt2('_DoublePrecisionRealFieldConst')
+
     def test_has__EnumerationFieldConst(self):
         self._assert_in_bt2('_EnumerationFieldConst')
 
@@ -476,3 +488,7 @@ class PackageTestCase(unittest.TestCase):
 
     def test_has___version__(self):
         self._assert_in_bt2('__version__')
+
+
+if __name__ == '__main__':
+    unittest.main()
This page took 0.025837 seconds and 4 git commands to generate.