Index: tests/unit_tests/test_constructors.py =================================================================== diff -u -r72c423da1d07c40699f40b5da5bee6d992d3082c -reb02c56e88faeeda46ed62b1c0ec841dca0b9aba --- tests/unit_tests/test_constructors.py (.../test_constructors.py) (revision 72c423da1d07c40699f40b5da5bee6d992d3082c) +++ tests/unit_tests/test_constructors.py (.../test_constructors.py) (revision eb02c56e88faeeda46ed62b1c0ec841dca0b9aba) @@ -16,19 +16,22 @@ import unittest import sys sys.path.append("../../") -from leahi_dialin import TD, DD, FP +from dialin import HDSimulator, DGSimulator, HD, DG class Test(unittest.TestCase): - def test_td(self): - TD() + def test_hd_simulator(self): + HDSimulator() - def test_dd(self): - DD() + def test_dg_simulator(self): + DGSimulator() - def test_fp(self): - FP() + def test_hd(self): + HD() + def test_dg(self): + DG() + if __name__ == '__main__': sys.exit(unittest.main(verbosity=2).result.wasSuccessful())