11 lines
155 B
Go
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")
|
|
}
|
|
}
|