19 lines
334 B
Go
19 lines
334 B
Go
package ebt
|
|
|
|
import (
|
|
"code.google.com/p/go-tour/tree"
|
|
"testing"
|
|
)
|
|
|
|
func TestSameTrees(t *testing.T) {
|
|
if !Same(tree.New(1), tree.New(1)) {
|
|
t.Error("Trees should have been the same ...")
|
|
}
|
|
}
|
|
|
|
func TestDifferentTrees(t *testing.T) {
|
|
if Same(tree.New(1), tree.New(2)) {
|
|
t.Error("Trees should have been the different ...")
|
|
}
|
|
}
|