From 574a78627e725593071fb7bc410457a6965592f9 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Thu, 6 Jun 2019 09:32:02 +0200 Subject: [PATCH] Remove test file --- test/test_tracepoints.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 test/test_tracepoints.py diff --git a/test/test_tracepoints.py b/test/test_tracepoints.py deleted file mode 100644 index f79ac3e..0000000 --- a/test/test_tracepoints.py +++ /dev/null @@ -1,22 +0,0 @@ -# Test tracetools tracepoints - -import unittest -from tracetools_analysis.test.utils import * - -class TestTracepoints(unittest.TestCase): - - def test_something(self): - self.assertTrue(True) - - def test_publisher_creation(self): - session_name = 'test-session' - path = '/tmp' - package_name = '' - executable_name = '' - run_and_trace(package_name, executable_name, session_name, path) - event_names = get_trace_event_names(f'{path}/{session_name}') - self.assertTrue('ros2:rcl_publisher_init' in event_names) - - -if __name__ == '__main__': - unittest.main()