2 unit tests added. Added a dummy matrix to mock_csm and changed position in mock_stage to a dictionary.

This commit is contained in:
Chish36 2025-08-12 12:20:21 +01:00 committed by Julian Stirling
parent ab9a324122
commit 1e7f62f8ad
3 changed files with 52 additions and 1 deletions

View file

@ -17,3 +17,7 @@ class MockCSMThing:
"""
image_resolution = (123, 456)
image_to_stage_displacement_matrix = [
[0.03061156624485296, 1.8031242270940833],
[1.773236372778601, 0.006660431608601435],
]

View file

@ -16,4 +16,4 @@ class MockStageThing:
is not artificially inflated.
"""
position = (111, 222, 333)
position = {"x": 3635, "y": 10, "z": 617}