| 14 | } |
| 15 | |
| 16 | void TextViewTest::viewDidLoad() |
| 17 | { |
| 18 | this->getView()->setColor(CAColor_gray); |
| 19 | |
| 20 | CATextView* textView = CATextView::createWithLayout(DLayout(DHorizontalLayout_L_R(100, 100), DVerticalLayout_T_B(100, 100))); |
| 21 | this->getView()->addSubview(textView); |
| 22 | } |
| 23 | |
| 24 | void TextViewTest::viewDidUnload() |
| 25 | { |
nothing calls this directly
no test coverage detected