(t *testing.T)
| 5 | ) |
| 6 | |
| 7 | func TestIntervalString_Point(t *testing.T) { |
| 8 | v := Variable{Symbol: "T"} |
| 9 | bound := NewVariableBound(v) |
| 10 | interval := NewInterval(bound, bound) |
| 11 | |
| 12 | got := interval.String() |
| 13 | want := "@[T]" |
| 14 | if got != want { |
| 15 | t.Errorf("Interval{T, T}.String() = %q, want %q", got, want) |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | func TestTemporalAtomString_Point(t *testing.T) { |
| 20 | v := Variable{Symbol: "T"} |
nothing calls this directly
no test coverage detected