This is an automated email from the ASF dual-hosted git repository. bertty pushed a commit to branch python-platform in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git
commit a7730b31925bc404b1c153ae1d4aae890d01e7d8 Author: Bertty Contreras-Rojas <[email protected]> AuthorDate: Thu Apr 7 16:38:03 2022 +0200 [WAYANG-#8] Test seed added Signed-off-by: bertty <[email protected]> --- python/bin/test.sh | 6 ++++++ python/setup.cfg | 14 +++++++------- python/src/pywy/__init__.py | 8 +------- .../src/pywy/{translate/protobuf => tests}/__init__.py | 0 .../python/compiler => tests/benchmark}/__init__.py | 0 python/src/pywy/tests/benchmark/python_benchmark_test.py | 15 +++++++++++++++ .../python/compiler => tests/integration}/__init__.py | 0 .../src/pywy/tests/integration/python_platform_test.py | 16 ++++++++++++++++ .../python/compiler => tests/unit}/__init__.py | 0 .../python/compiler => tests/unit/core}/__init__.py | 0 python/src/pywy/tests/unit/core/channel_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/core/executor_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/core/mapping_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/core/plan_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/core/platform_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/core/plugin_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/core/translator_test.py | 16 ++++++++++++++++ .../compiler => tests/unit/dataquanta}/__init__.py | 0 .../python/compiler => tests/unit/graph}/__init__.py | 0 python/src/pywy/tests/unit/graph/graph_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/graph/types_test.py | 16 ++++++++++++++++ .../python/compiler => tests/unit/operators}/__init__.py | 0 python/src/pywy/tests/unit/operators/base_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/operators/sink_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/operators/source_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/operators/unary_test.py | 16 ++++++++++++++++ .../python/compiler => tests/unit/platforms}/__init__.py | 0 .../compiler => tests/unit/platforms/python}/__init__.py | 0 .../src/pywy/tests/unit/platforms/python/channel_test.py | 16 ++++++++++++++++ .../pywy/tests/unit/platforms/python/execution_test.py | 16 ++++++++++++++++ .../pywy/tests/unit/platforms/python/mappings_test.py | 16 ++++++++++++++++ .../unit/platforms/python/operator}/__init__.py | 0 .../python/operator/py_execution_operator_test.py | 16 ++++++++++++++++ .../platforms/python/operator/py_sink_textfile_test.py | 16 ++++++++++++++++ .../platforms/python/operator/py_source_textfile_test.py | 16 ++++++++++++++++ .../platforms/python/operator/py_unary_filter_test.py | 16 ++++++++++++++++ .../pywy/tests/unit/platforms/python/platform_test.py | 16 ++++++++++++++++ .../src/pywy/tests/unit/platforms/python/plugin_test.py | 16 ++++++++++++++++ python/src/pywy/tests/unit/types_test.py | 16 ++++++++++++++++ 39 files changed, 413 insertions(+), 14 deletions(-) diff --git a/python/bin/test.sh b/python/bin/test.sh new file mode 100755 index 00000000..620e4622 --- /dev/null +++ b/python/bin/test.sh @@ -0,0 +1,6 @@ +#!/bin/bash + + +cd "$(dirname "$0")/.." + +python -m unittest discover -s ./src/ --pattern=*test.py \ No newline at end of file diff --git a/python/setup.cfg b/python/setup.cfg index 31c4cf73..0b38e5b5 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -19,13 +19,13 @@ package_dir = = src packages = find: python_requires = >=3.6 - -[options.packages.find] -where = src - -[options] - install_requires = cloudpickle ==2.0.0 protobuf ==3.19.4 - BazSpam ==1.1 \ No newline at end of file + BazSpam ==1.1 + +tests_require = + unitest ==1.3.5 + +[options.packages.find] +where = src \ No newline at end of file diff --git a/python/src/pywy/__init__.py b/python/src/pywy/__init__.py index 39f92eb3..ecb1860d 100644 --- a/python/src/pywy/__init__.py +++ b/python/src/pywy/__init__.py @@ -13,10 +13,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -# - -from .config import * -from .orchestrator import * -from pywy.translate.protobuf import * -from .old_graph import * -from .test import * \ No newline at end of file +# \ No newline at end of file diff --git a/python/src/pywy/translate/protobuf/__init__.py b/python/src/pywy/tests/__init__.py similarity index 100% rename from python/src/pywy/translate/protobuf/__init__.py rename to python/src/pywy/tests/__init__.py diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/benchmark/__init__.py similarity index 100% copy from python/src/pywy/platforms/python/compiler/__init__.py copy to python/src/pywy/tests/benchmark/__init__.py diff --git a/python/src/pywy/tests/benchmark/python_benchmark_test.py b/python/src/pywy/tests/benchmark/python_benchmark_test.py new file mode 100644 index 00000000..6538beaf --- /dev/null +++ b/python/src/pywy/tests/benchmark/python_benchmark_test.py @@ -0,0 +1,15 @@ +import unittest + + +class TestBenchmarkPython(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/integration/__init__.py similarity index 100% copy from python/src/pywy/platforms/python/compiler/__init__.py copy to python/src/pywy/tests/integration/__init__.py diff --git a/python/src/pywy/tests/integration/python_platform_test.py b/python/src/pywy/tests/integration/python_platform_test.py new file mode 100644 index 00000000..da17ca82 --- /dev/null +++ b/python/src/pywy/tests/integration/python_platform_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestIntegrationPythonPlatform(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/unit/__init__.py similarity index 100% copy from python/src/pywy/platforms/python/compiler/__init__.py copy to python/src/pywy/tests/unit/__init__.py diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/unit/core/__init__.py similarity index 100% copy from python/src/pywy/platforms/python/compiler/__init__.py copy to python/src/pywy/tests/unit/core/__init__.py diff --git a/python/src/pywy/tests/unit/core/channel_test.py b/python/src/pywy/tests/unit/core/channel_test.py new file mode 100644 index 00000000..70f8c779 --- /dev/null +++ b/python/src/pywy/tests/unit/core/channel_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitCoreChannel(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/core/executor_test.py b/python/src/pywy/tests/unit/core/executor_test.py new file mode 100644 index 00000000..b764db8a --- /dev/null +++ b/python/src/pywy/tests/unit/core/executor_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitCoreExecutor(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/core/mapping_test.py b/python/src/pywy/tests/unit/core/mapping_test.py new file mode 100644 index 00000000..e4c6d925 --- /dev/null +++ b/python/src/pywy/tests/unit/core/mapping_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitCoreMapping(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/core/plan_test.py b/python/src/pywy/tests/unit/core/plan_test.py new file mode 100644 index 00000000..98e73dd8 --- /dev/null +++ b/python/src/pywy/tests/unit/core/plan_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitCorePlan(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/core/platform_test.py b/python/src/pywy/tests/unit/core/platform_test.py new file mode 100644 index 00000000..aff1030b --- /dev/null +++ b/python/src/pywy/tests/unit/core/platform_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitCorePlatform(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/core/plugin_test.py b/python/src/pywy/tests/unit/core/plugin_test.py new file mode 100644 index 00000000..648e1a9f --- /dev/null +++ b/python/src/pywy/tests/unit/core/plugin_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitCorePlugin(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/core/translator_test.py b/python/src/pywy/tests/unit/core/translator_test.py new file mode 100644 index 00000000..3be5e616 --- /dev/null +++ b/python/src/pywy/tests/unit/core/translator_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitCoreTranslator(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/unit/dataquanta/__init__.py similarity index 100% copy from python/src/pywy/platforms/python/compiler/__init__.py copy to python/src/pywy/tests/unit/dataquanta/__init__.py diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/unit/graph/__init__.py similarity index 100% copy from python/src/pywy/platforms/python/compiler/__init__.py copy to python/src/pywy/tests/unit/graph/__init__.py diff --git a/python/src/pywy/tests/unit/graph/graph_test.py b/python/src/pywy/tests/unit/graph/graph_test.py new file mode 100644 index 00000000..96fec520 --- /dev/null +++ b/python/src/pywy/tests/unit/graph/graph_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitGraphGraph(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/graph/types_test.py b/python/src/pywy/tests/unit/graph/types_test.py new file mode 100644 index 00000000..454bf6cb --- /dev/null +++ b/python/src/pywy/tests/unit/graph/types_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitGraphTypes(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/unit/operators/__init__.py similarity index 100% copy from python/src/pywy/platforms/python/compiler/__init__.py copy to python/src/pywy/tests/unit/operators/__init__.py diff --git a/python/src/pywy/tests/unit/operators/base_test.py b/python/src/pywy/tests/unit/operators/base_test.py new file mode 100644 index 00000000..d060748e --- /dev/null +++ b/python/src/pywy/tests/unit/operators/base_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitOperatorsBase(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/operators/sink_test.py b/python/src/pywy/tests/unit/operators/sink_test.py new file mode 100644 index 00000000..2cc913d2 --- /dev/null +++ b/python/src/pywy/tests/unit/operators/sink_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitOperatorsSink(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/operators/source_test.py b/python/src/pywy/tests/unit/operators/source_test.py new file mode 100644 index 00000000..9f0c4687 --- /dev/null +++ b/python/src/pywy/tests/unit/operators/source_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitOperatorsSource(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/operators/unary_test.py b/python/src/pywy/tests/unit/operators/unary_test.py new file mode 100644 index 00000000..944bd217 --- /dev/null +++ b/python/src/pywy/tests/unit/operators/unary_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitOperatorsUnary(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/unit/platforms/__init__.py similarity index 100% copy from python/src/pywy/platforms/python/compiler/__init__.py copy to python/src/pywy/tests/unit/platforms/__init__.py diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/unit/platforms/python/__init__.py similarity index 100% copy from python/src/pywy/platforms/python/compiler/__init__.py copy to python/src/pywy/tests/unit/platforms/python/__init__.py diff --git a/python/src/pywy/tests/unit/platforms/python/channel_test.py b/python/src/pywy/tests/unit/platforms/python/channel_test.py new file mode 100644 index 00000000..d43ff256 --- /dev/null +++ b/python/src/pywy/tests/unit/platforms/python/channel_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitPlatformPyChannel(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/platforms/python/execution_test.py b/python/src/pywy/tests/unit/platforms/python/execution_test.py new file mode 100644 index 00000000..7c96ad02 --- /dev/null +++ b/python/src/pywy/tests/unit/platforms/python/execution_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitPlatformPyExecution(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/platforms/python/mappings_test.py b/python/src/pywy/tests/unit/platforms/python/mappings_test.py new file mode 100644 index 00000000..c2f255aa --- /dev/null +++ b/python/src/pywy/tests/unit/platforms/python/mappings_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitPlatformPyMappings(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/platforms/python/compiler/__init__.py b/python/src/pywy/tests/unit/platforms/python/operator/__init__.py similarity index 100% rename from python/src/pywy/platforms/python/compiler/__init__.py rename to python/src/pywy/tests/unit/platforms/python/operator/__init__.py diff --git a/python/src/pywy/tests/unit/platforms/python/operator/py_execution_operator_test.py b/python/src/pywy/tests/unit/platforms/python/operator/py_execution_operator_test.py new file mode 100644 index 00000000..ab3df334 --- /dev/null +++ b/python/src/pywy/tests/unit/platforms/python/operator/py_execution_operator_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitPlatformPyOperatorExecution(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/platforms/python/operator/py_sink_textfile_test.py b/python/src/pywy/tests/unit/platforms/python/operator/py_sink_textfile_test.py new file mode 100644 index 00000000..3991bd99 --- /dev/null +++ b/python/src/pywy/tests/unit/platforms/python/operator/py_sink_textfile_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitPlatformPyOperatorSinkTextfile(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/platforms/python/operator/py_source_textfile_test.py b/python/src/pywy/tests/unit/platforms/python/operator/py_source_textfile_test.py new file mode 100644 index 00000000..7937d68d --- /dev/null +++ b/python/src/pywy/tests/unit/platforms/python/operator/py_source_textfile_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitPlatformPyOperatorSourceTextfile(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/platforms/python/operator/py_unary_filter_test.py b/python/src/pywy/tests/unit/platforms/python/operator/py_unary_filter_test.py new file mode 100644 index 00000000..8b70ee09 --- /dev/null +++ b/python/src/pywy/tests/unit/platforms/python/operator/py_unary_filter_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitPlatformPyOperatorUnaryFilter(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/platforms/python/platform_test.py b/python/src/pywy/tests/unit/platforms/python/platform_test.py new file mode 100644 index 00000000..884811d4 --- /dev/null +++ b/python/src/pywy/tests/unit/platforms/python/platform_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitPlatformPyPlatform(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/platforms/python/plugin_test.py b/python/src/pywy/tests/unit/platforms/python/plugin_test.py new file mode 100644 index 00000000..37ec4298 --- /dev/null +++ b/python/src/pywy/tests/unit/platforms/python/plugin_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitPlatformPyPlugin(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") + diff --git a/python/src/pywy/tests/unit/types_test.py b/python/src/pywy/tests/unit/types_test.py new file mode 100644 index 00000000..d1e6774f --- /dev/null +++ b/python/src/pywy/tests/unit/types_test.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUnitTypes(unittest.TestCase): + def setUp(self): + pass + + def test_TO_REMOVE(self): + """ + TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT + Returns + ------- + + """ + self.assertEqual("a", "a") +
