(t *testing.T)
| 13 | } |
| 14 | |
| 15 | func TestServiceCompiledIsNot(t *testing.T) { |
| 16 | if compiled, err := compile(&testOracle); err != nil { |
| 17 | t.Fatal(err) |
| 18 | } else if compiled.Is(brokenOracle) { |
| 19 | t.Fatal("compiled object should not match a different source oracle") |
| 20 | } |
| 21 | } |