Skip to content

Instantly share code, notes, and snippets.

@lysu
Created April 24, 2016 14:45
Show Gist options
  • Save lysu/00979c9aec91a250aea18144fa1368cf to your computer and use it in GitHub Desktop.
Save lysu/00979c9aec91a250aea18144fa1368cf to your computer and use it in GitHub Desktop.
package math_test
import (
"testing"
"xx/math"
)
func TestName(t *testing.T) {
if 2 != math.Sum(1, 1) {
t.Fatalf("Sum of %d + %d not 2")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment