Skip to content

Commit f53707b

Browse files
committed
chore(python): add generated test files
1 parent c2c1c51 commit f53707b

File tree

84 files changed

+632
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+632
-0
lines changed

packages/compare-images/python/itkwasm-compare-images-wasi/tests/__init__.py

Whitespace-only changes.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from pathlib import Path
2+
3+
test_input_path = Path(__file__).parent / ".." / ".." / ".." / "test" / "data" / "input"
4+
test_baseline_path = Path(__file__).parent / ".." / ".." / ".." / "test" / "data" / "baseline"
5+
test_output_path = Path(__file__).parent / ".." / ".." / ".." / "test" / "data" / "output" / "python"
6+
test_output_path.mkdir(parents=True, exist_ok=True)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Generated file. To retain edits, remove this comment.
2+
3+
from itkwasm_compare_images_wasi import compare_double_images
4+
5+
from .common import test_input_path, test_output_path
6+
7+
def test_compare_double_images():
8+
pass
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Generated file. To retain edits, remove this comment.
2+
3+
from itkwasm_compare_images_wasi import vector_magnitude
4+
5+
from .common import test_input_path, test_output_path
6+
7+
def test_vector_magnitude():
8+
pass

packages/compress-stringify/python/itkwasm-compress-stringify-wasi/tests/__init__.py

Whitespace-only changes.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from pathlib import Path
2+
3+
test_input_path = Path(__file__).parent / ".." / ".." / ".." / "test" / "data" / "input"
4+
test_baseline_path = Path(__file__).parent / ".." / ".." / ".." / "test" / "data" / "baseline"
5+
test_output_path = Path(__file__).parent / ".." / ".." / ".." / "test" / "data" / "output" / "python"
6+
test_output_path.mkdir(parents=True, exist_ok=True)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Generated file. To retain edits, remove this comment.
2+
3+
from itkwasm_compress_stringify_wasi import compress_stringify
4+
5+
from .common import test_input_path, test_output_path
6+
7+
def test_compress_stringify():
8+
pass
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Generated file. To retain edits, remove this comment.
2+
3+
from itkwasm_compress_stringify_wasi import parse_string_decompress
4+
5+
from .common import test_input_path, test_output_path
6+
7+
def test_parse_string_decompress():
8+
pass

packages/dicom/python/itkwasm-dicom-wasi/tests/__init__.py

Whitespace-only changes.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from pathlib import Path
2+
3+
test_input_path = Path(__file__).parent / ".." / ".." / ".." / "test" / "data" / "input"
4+
test_baseline_path = Path(__file__).parent / ".." / ".." / ".." / "test" / "data" / "baseline"
5+
test_output_path = Path(__file__).parent / ".." / ".." / ".." / "test" / "data" / "output" / "python"
6+
test_output_path.mkdir(parents=True, exist_ok=True)

0 commit comments

Comments
 (0)