swig/Examples/test-suite/go/template_inherit_runme.go
Ian Lance Taylor 8a1c09e280 Fix Go tests to run in module mode
Stop using relative imports and add a go.mod file.

Tested against Go 1.6 through Go pre-1.13, and gccgo.
2019-04-24 21:43:38 -07:00

72 lines
861 B
Go

package main
import . "template_inherit"
func main() {
a := NewFooInt()
b := NewFooDouble()
c := NewBarInt()
d := NewBarDouble()
e := NewFooUInt()
f := NewBarUInt()
if a.Blah() != "Foo" {
panic(0)
}
if b.Blah() != "Foo" {
panic(0)
}
if e.Blah() != "Foo" {
panic(0)
}
if c.Blah() != "Bar" {
panic(0)
}
if d.Blah() != "Bar" {
panic(0)
}
if f.Blah() != "Bar" {
panic(0)
}
if c.Foomethod() != "foomethod" {
panic(0)
}
if d.Foomethod() != "foomethod" {
panic(0)
}
if f.Foomethod() != "foomethod" {
panic(0)
}
if Invoke_blah_int(a) != "Foo" {
panic(0)
}
if Invoke_blah_int(c) != "Bar" {
panic(0)
}
if Invoke_blah_double(b) != "Foo" {
panic(0)
}
if Invoke_blah_double(d) != "Bar" {
panic(0)
}
if Invoke_blah_uint(e) != "Foo" {
panic(0)
}
if Invoke_blah_uint(f) != "Bar" {
panic(0)
}
}