Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- package main
-
- import (
- "os"
- "testing"
- )
-
- func TestMain(m *testing.M) {
- os.Exit(m.Run())
- }
-
- func TestHelloWorld(t *testing.T) {
- if HelloWorld() != "hello world" {
- t.Errorf("got %s expected %s", HelloWorld(), "hello world")
- }
- }
|