--- title: Multiple Complex Structures test_name: TestMultipleComplexStructures file_name: shutter_test.go version: 0.1.0 --- []shutter_test.User{ { ID: 1, Username: "alice", Email: "alice@example.com", Active: true, CreatedAt: time.Time{ wall: 0x0, ext: 0, loc: (*time.Location)(nil), }, Roles: []string{"user", "moderator"}, Metadata: map[string]interface{}{ "badge": "verified", "verified": true, }, }, { ID: 2, Username: "bob", Email: "bob@example.com", Active: false, CreatedAt: time.Time{ wall: 0x0, ext: 0, loc: (*time.Location)(nil), }, Roles: []string{"user"}, Metadata: map[string]interface{}{ "avatar": "https://example.com/bob.jpg", "verified": false, }, }, { ID: 3, Username: "charlie", Email: "charlie@example.com", Active: true, CreatedAt: time.Time{ wall: 0x0, ext: 0, loc: (*time.Location)(nil), }, Roles: []string{"user", "admin"}, Metadata: map[string]interface{}{ "account_age_days": 365, "verified": true, }, }, }