| 144 | } |
| 145 | |
| 146 | FontNoReplacementTest* FontNoReplacementTest::create() |
| 147 | { |
| 148 | auto ret = new FontNoReplacementTest; |
| 149 | if (ret->init()) |
| 150 | { |
| 151 | ret->autorelease(); |
| 152 | } |
| 153 | else |
| 154 | { |
| 155 | delete ret; |
| 156 | ret = nullptr; |
| 157 | } |
| 158 | |
| 159 | return ret; |
| 160 | } |
| 161 | |
| 162 | FontNoReplacementTest::FontNoReplacementTest() |
| 163 | { |
nothing calls this directly
no test coverage detected