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

Add test stub for trim_downsample_WFChan

parent 6f9391c6
No related branches found
No related tags found
1 merge request!27Draft: Add tests for functions in handling_data.py
...@@ -37,6 +37,7 @@ from sohstationviewer.model.handling_data import ( ...@@ -37,6 +37,7 @@ from sohstationviewer.model.handling_data import (
trim_downsample_SOHChan trim_downsample_SOHChan
) )
from sohstationviewer.model.reftek.from_rt2ms.core import Reftek130 from sohstationviewer.model.reftek.from_rt2ms.core import Reftek130
from sohstationviewer.conf import constants as consts
TEST_DATA_DIR = Path(__file__).parent.parent.joinpath('test_data') TEST_DATA_DIR = Path(__file__).parent.parent.joinpath('test_data')
...@@ -971,3 +972,11 @@ class TestTrimDownsampleSohChan(TestCase): ...@@ -971,3 +972,11 @@ class TestTrimDownsampleSohChan(TestCase):
def test_reftek(self): def test_reftek(self):
self.fail() self.fail()
class TestTrimDownsampleWfChan(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