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