| 412 | } |
| 413 | type workspaceApp templateApp |
| 414 | type testWorkspace struct { |
| 415 | name string |
| 416 | template *testTemplate |
| 417 | buildParameters []buildParameter |
| 418 | |
| 419 | // Filled later. |
| 420 | id uuid.UUID |
| 421 | user any // *testUser, but it's not available yet, defined below. |
| 422 | agentID uuid.UUID |
| 423 | apps []*workspaceApp |
| 424 | agentClient *agentsdk.Client |
| 425 | } |
| 426 | type testUser struct { |
| 427 | name string |
| 428 | workspaces []*testWorkspace |