| 1636 | |
| 1637 | |
| 1638 | class TestTCPAddress(TraitTestBase): |
| 1639 | obj = TCPAddressTrait() |
| 1640 | |
| 1641 | _default_value = ("127.0.0.1", 0) |
| 1642 | _good_values = [("localhost", 0), ("192.168.0.1", 1000), ("www.google.com", 80)] |
| 1643 | _bad_values = [(0, 0), ("localhost", 10.0), ("localhost", -1), None] |
| 1644 | |
| 1645 | |
| 1646 | class ListTrait(HasTraits): |
nothing calls this directly
no test coverage detected
searching dependent graphs…