Files
soft_quay/core/product_test.go
T

10 lines
169 B
Go
Raw Normal View History

package core
import "testing"
func TestProductName(t *testing.T) {
if ProductName != "SoftBox" {
t.Fatalf("ProductName = %q, want %q", ProductName, "SoftBox")
}
}