drone-ci-testing/examples/golang-tests/main_test.go
2019-07-07 23:35:29 +02:00

11 lines
155 B
Go

package main
import (
"testing"
)
func TestCalculate(t *testing.T) {
if Calculate(2) != 4 {
t.Error("Expected 2 + 2 to equal 4")
}
}