// PKGPATH: gno.land/r/gnoland/boards2/v1/filetests/z_set_realm_notice_00_filetest package z_set_realm_notice_00_filetest import ( "testing" boards2 "gno.land/r/gnoland/boards2/v1" ) const owner address = "g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh" 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