From 5daf408d2e103e1f623efc2369c2752d2a5b544b Mon Sep 17 00:00:00 2001 From: spo Date: Thu, 17 Dec 2015 17:11:43 +0300 Subject: [PATCH] Add Platine unit test --- src/PythonAPI/CMakeLists.txt | 1 + src/PythonAPI/Test/TestPlatine.py | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 src/PythonAPI/Test/TestPlatine.py diff --git a/src/PythonAPI/CMakeLists.txt b/src/PythonAPI/CMakeLists.txt index e43862ab7..03df03f58 100644 --- a/src/PythonAPI/CMakeLists.txt +++ b/src/PythonAPI/CMakeLists.txt @@ -38,4 +38,5 @@ ADD_UNIT_TESTS( TestMakeBrick1.py TestMakeBrick2.py TestMakeBrick3.py + TestPlatine.py ) diff --git a/src/PythonAPI/Test/TestPlatine.py b/src/PythonAPI/Test/TestPlatine.py new file mode 100644 index 000000000..498be7750 --- /dev/null +++ b/src/PythonAPI/Test/TestPlatine.py @@ -0,0 +1,6 @@ +import unittest + +import examples.Platine + +if __name__ == "__main__": + unittest.main() -- 2.39.2