18 lines
367 B
Python
18 lines
367 B
Python
import unittest
|
|
import nhf.touhou.houjuu_nue as M
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
def test_wing_root(self):
|
|
p = M.Parameters()
|
|
p.wing_root()
|
|
def test_wings(self):
|
|
p = M.Parameters()
|
|
p.wing_r1()
|
|
def test_harness(self):
|
|
p = M.Parameters()
|
|
p.harness_assembly()
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|