| 1377 | |
| 1378 | |
| 1379 | class TestMinBoundCInt(TestCInt): |
| 1380 | obj = MinBoundCIntTrait() # type:ignore |
| 1381 | |
| 1382 | _default_value = 5 |
| 1383 | _good_values = [3, 3.0, "3"] |
| 1384 | _bad_values = [2.6, 2, -3, -3.0] |
| 1385 | |
| 1386 | |
| 1387 | class LongTrait(HasTraits): |
nothing calls this directly
no test coverage detected
searching dependent graphs…