Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

ambassadorweek_test.gno

0.18 Kb · 10 lines
 1package ambassadorweek
 2
 3import "testing"
 4
 5func TestIncrement(cur realm, t *testing.T) {
 6	value := Increment(cross(cur))
 7	if value != 1 {
 8		t.Fatalf("expected 1, got %d", value)
 9	}
10}