Skip to content
Snippets Groups Projects
Commit 0ec987be authored by Kien Le's avatar Kien Le
Browse files

Add test stub for get_trimTPSData

parent b9344beb
No related branches found
No related tags found
1 merge request!27Draft: Add tests for functions in handling_data.py
...@@ -1224,3 +1224,12 @@ class TestGetEachDay5MinList(TestCase): ...@@ -1224,3 +1224,12 @@ class TestGetEachDay5MinList(TestCase):
end_time = UTCDateTime(1, 1, 1, 0, 0).timestamp end_time = UTCDateTime(1, 1, 1, 0, 0).timestamp
with self.assertRaises(Exception): with self.assertRaises(Exception):
get_eachDay5MinList(start_time, end_time) get_eachDay5MinList(start_time, end_time)
class TestGetTrimTpsData(TestCase):
def setUp(self) -> None:
pass
@expectedFailure
def test(self):
raise NotImplementedError(type(self))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment