| 1723 | |
| 1724 | |
| 1725 | class TestUnionListTrait(TraitTestBase): |
| 1726 | obj = UnionListTrait() |
| 1727 | |
| 1728 | _default_value: t.List[t.Any] = [] |
| 1729 | _good_values = [[True, 1], [False, True]] |
| 1730 | _bad_values = [[1, "True"], False] |
| 1731 | |
| 1732 | |
| 1733 | class LenListTrait(HasTraits): |
nothing calls this directly
no test coverage detected
searching dependent graphs…