17 lines
229 B
Python
17 lines
229 B
Python
import unittest
|
|
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.abspath('../src'))
|
|
import fit
|
|
|
|
|
|
class TestFit(unittest.TestCase):
|
|
|
|
def test_property(self):
|
|
self.assertEqual()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|