func ExampleAppSession() { fmt.Printf("%s\n", mapp.GetAppSession("appname")) // Output: // demo }
func TestAppSession(t *testing.T) { if mapp.GetAppSession("appname") != "demo" { t.Error("error get app name") } }