2024-06-20 23:29:18 -07:00
|
|
|
import unittest
|
|
|
|
import nhf.touhou.houjuu_nue as M
|
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_wing_root(self):
|
|
|
|
p = M.Parameters()
|
|
|
|
p.wing_root()
|
2024-06-20 23:45:24 -07:00
|
|
|
def test_wings(self):
|
2024-06-20 23:29:18 -07:00
|
|
|
p = M.Parameters()
|
2024-06-20 23:45:24 -07:00
|
|
|
p.wing_r1()
|
2024-06-20 23:29:18 -07:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|