12345678910111213 |
- package examples
- import (
- "testing"
- )
- func TestVariables(t *testing.T) {
- integer, c, python, java := Variables()
- if integer != 0 || c != false || python != false || java != false {
- t.Fatalf("Some of the values were not initialized to their default values.")
- }
- }
|