Files
2026-07-13 13:00:08 +08:00

15 lines
233 B
Go

package main
import (
"runtime"
"testing"
)
func TestAppPlatformReturnsRuntimeGOOS(t *testing.T) {
app := NewApp()
if got := app.Platform(); got != runtime.GOOS {
t.Fatalf("Platform() = %q, want %q", got, runtime.GOOS)
}
}