// PKGPATH: gno.land/r/gnoland/boards2/v0/filetests/z_set_realm_notice_00_filetest package z_set_realm_notice_00_filetest import ( "testing" boards2 "gno.land/r/gnoland/boards2/v0" ) const owner address = "g1skl80cuz8zq3lul9pgz5pc35l2pfzgxgfpsqkx" func main(cur realm) { testing.SetRealm(testing.NewUserRealm(owner)) boards2.SetRealmNotice(cross(cur), "This is a test realm message") println(boards2.Notice) } // Output: // This is a test realm message