15 lines
299 B
Python
15 lines
299 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_wing_profiles(self):
|
||
|
p = M.Parameters()
|
||
|
p.wing_r1_profile()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|