package main import "testing" func TestGreet(t *testing.T) { got := Greet() want := "Astraevum Forge is online" if got != want { t.Errorf("got %q, want %q", got, want) } }