1234567891011 |
- package examples
- import "testing"
- func TestVarsWithInit(t *testing.T) {
- i, j, c, python, java := VarsWithInit()
- if i != 1 || j != 2 || c != true || python != false || java != "No!" {
- t.Fatalf("Some of the given values are different from the expected.")
- }
- }
|