Skip to content

Commit

Permalink
test for mcc
Browse files Browse the repository at this point in the history
  • Loading branch information
wolski committed Jun 5, 2024
1 parent abcbd90 commit 753f741
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/unit/calibration/spectrum/test_calibration_method_mcc.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import unittest

import numpy as np

from depiction.calibration.spectrum.calibration_method_mcc import CalibrationMethodMassClusterCenterModel


class TestCalibrationMethodMCC(unittest.TestCase):
def test_get_distances_nearest_when_invalid(self) -> None:
mccm = CalibrationMethodMassClusterCenterModel.__init__()


if __name__ == "__main__":
unittest.main()

0 comments on commit 753f741

Please sign in to comment.