(index, count)
| 749 | addTextField(); |
| 750 | |
| 751 | const assert = (index, count) => { |
| 752 | const view: any = stack.getChildAt(index); |
| 753 | TKUnit.assertEqual(view.returnPress, count, `TextField at ${index}, has incorrect returnPress.`); |
| 754 | }; |
| 755 | helper.buildUIAndRunTest(stack, (views: Array<View>) => { |
| 756 | (stack.getChildAt(0) as TextField).focus(); |
| 757 |
no test coverage detected