()
| 2475 | surfaceRef = React.createRef(); |
| 2476 | busRef = React.createRef(); |
| 2477 | render() { |
| 2478 | return ( |
| 2479 | <Surface ref={this.surfaceRef} visitor={visitor} width={2} height={2}> |
| 2480 | <Bus ref={this.busRef}> |
| 2481 | <JustBlue blue={0.2} /> |
| 2482 | </Bus> |
| 2483 | <LinearCopy>{() => this.busRef.current}</LinearCopy> |
| 2484 | </Surface> |
| 2485 | ); |
| 2486 | } |
| 2487 | } |
| 2488 | inst.update(<Ex />); |
| 2489 | expect(inst.getInstance().busRef.current.getGLName()).toBeDefined(); |
nothing calls this directly
no outgoing calls
no test coverage detected