| 82 | } |
| 83 | |
| 84 | void XmlRpcRequestParserControllerTest::testPopArrayFrame_noValue() |
| 85 | { |
| 86 | XmlRpcRequestParserController controller; |
| 87 | controller.setCurrentFrameValue(List::g()); |
| 88 | controller.pushFrame(); |
| 89 | controller.popArrayFrame(); |
| 90 | const List* array = downcast<List>(controller.getCurrentFrameValue()); |
| 91 | CPPUNIT_ASSERT(array->empty()); |
| 92 | } |
| 93 | |
| 94 | void XmlRpcRequestParserControllerTest::testPopArrayFrame_compound() |
| 95 | { |
nothing calls this directly
no test coverage detected