Skip to content

Commit

Permalink
Add unit tests for new modules
Browse files Browse the repository at this point in the history
  • Loading branch information
alperkent committed Apr 24, 2024
1 parent 3cfe747 commit 4fed7a9
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/cli/pipelines/test_eeg_fmri_cleaning.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest

from eeg_research.cli.pipelines.eeg_fmri_cleaning import *


def test_example():
assert True

8 changes: 8 additions & 0 deletions tests/cli/tools/test_interactive_menu.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest

from eeg_research.cli.tools.interactive_menu import *


def test_example():
assert True

8 changes: 8 additions & 0 deletions tests/preprocessing/pipelines/test_bcg_cleaning.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest

from eeg_research.preprocessing.pipelines.bcg_cleaning import *


def test_example():
assert True

8 changes: 8 additions & 0 deletions tests/preprocessing/pipelines/test_gradient_cleaning.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest

from eeg_research.preprocessing.pipelines.gradient_cleaning import *


def test_example():
assert True

8 changes: 8 additions & 0 deletions tests/preprocessing/tools/test_GradientRemover.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest

from eeg_research.preprocessing.tools.GradientRemover import *


def test_example():
assert True

8 changes: 8 additions & 0 deletions tests/preprocessing/tools/test_functions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest

from eeg_research.preprocessing.tools.functions import *


def test_example():
assert True

8 changes: 8 additions & 0 deletions tests/preprocessing/tools/test_utils.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest

from eeg_research.preprocessing.tools.utils import *


def test_example():
assert True

8 changes: 8 additions & 0 deletions tests/toolbox/test_generate_test_templates.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest

from eeg_research.toolbox.generate_test_templates import *


def test_example():
assert True

0 comments on commit 4fed7a9

Please sign in to comment.