| 416 | } |
| 417 | |
| 418 | class TestStack extends Root { |
| 419 | constructor() { |
| 420 | super(); |
| 421 | |
| 422 | new MyConstruct(this, 'MyConstruct'); |
| 423 | new TheirConstruct(this, 'TheirConstruct'); |
| 424 | |
| 425 | this.node.addValidation({ validate: () => ['stack-error'] }); |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | const stack = new TestStack(); |
| 430 |
nothing calls this directly
no outgoing calls
no test coverage detected