package timer import ( "fmt" "testing" ) func TestTimer(t *testing.T) { result := CalculateTime(4) fmt.Println(result) result = CalculateTime(3) fmt.Println(result) }