From e0e70a3e8c94043a784e330ace05f1a741119aca Mon Sep 17 00:00:00 2001 From: grahamlittlephd Date: Mon, 19 Feb 2024 12:15:36 -0500 Subject: [PATCH] blank tests to dps_dpp module --- .../tests/test_dps_and_dpp_management.py | 15 +++++++++++++++ .../tests/test_streamline_operations.py | 15 --------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/scilpy/tractograms/tests/test_dps_and_dpp_management.py b/scilpy/tractograms/tests/test_dps_and_dpp_management.py index fb93d736a..1fc2a7e88 100644 --- a/scilpy/tractograms/tests/test_dps_and_dpp_management.py +++ b/scilpy/tractograms/tests/test_dps_and_dpp_management.py @@ -1,3 +1,18 @@ def test_project_map_to_streamlines(): # toDo pass + + +def test_perform_streamline_operation_per_point(): + # toDo + pass + + +def test_perform_operation_per_streamline(): + # toDo + pass + + +def test_perform_streamline_operation_on_endpoints(): + # toDo + pass diff --git a/scilpy/tractograms/tests/test_streamline_operations.py b/scilpy/tractograms/tests/test_streamline_operations.py index f8e0d4e8a..faeb4e57c 100644 --- a/scilpy/tractograms/tests/test_streamline_operations.py +++ b/scilpy/tractograms/tests/test_streamline_operations.py @@ -367,18 +367,3 @@ def test_smooth_line_spline(): dist_2 = np.linalg.norm(noisy_streamline - smoothed_streamline) assert dist_1 < dist_2 - - -def test_perform_streamline_operation_per_point(): - # toDo - pass - - -def test_perform_operation_per_streamline(): - # toDo - pass - - -def test_perform_streamline_operation_on_endpoints(): - # toDo - pass