| 74 | //@implementation BaseClippingNodeTest |
| 75 | |
| 76 | bool BaseClippingNodeTest::init() |
| 77 | { |
| 78 | if (TestCase::init()) |
| 79 | { |
| 80 | |
| 81 | auto background = Sprite::create(s_back3); |
| 82 | background->setAnchorPoint(Vec2::ZERO); |
| 83 | background->setPosition(Vec2::ZERO); |
| 84 | this->addChild(background, -1); |
| 85 | |
| 86 | this->setup(); |
| 87 | return true; |
| 88 | } |
| 89 | return false; |
| 90 | } |
| 91 | |
| 92 | BaseClippingNodeTest::~BaseClippingNodeTest() |
| 93 | { |
no test coverage detected