()
| 372 | |
| 373 | class TestStack extends Root { |
| 374 | constructor() { |
| 375 | super(); |
| 376 | |
| 377 | new MyConstruct(this, 'MyConstruct'); |
| 378 | new TheirConstruct(this, 'TheirConstruct'); |
| 379 | |
| 380 | this.node.addValidation({ validate: () => ['stack-error'] }); |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | const stack = new TestStack(); |
nothing calls this directly
no test coverage detected