| 139 | } |
| 140 | |
| 141 | void test_exception() |
| 142 | { |
| 143 | try |
| 144 | { |
| 145 | throw geode::OpenGeodeBasicException{ nullptr, |
| 146 | geode::OpenGeodeException::TYPE::internal, "try ", "some ", |
| 147 | "concatenation" }; |
| 148 | } |
| 149 | catch( ... ) |
| 150 | { |
| 151 | geode::geode_lippincott(); |
| 152 | } |
| 153 | |
| 154 | try |
| 155 | { |
| 156 | throw std::runtime_error{ "try std exception" }; |
| 157 | } |
| 158 | catch( ... ) |
| 159 | { |
| 160 | geode::geode_lippincott(); |
| 161 | } |
| 162 | |
| 163 | try |
| 164 | { |
| 165 | throw std::runtime_error{ "test" }; |
| 166 | } |
| 167 | catch( ... ) |
| 168 | { |
| 169 | geode::geode_lippincott(); |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | void test() |
| 174 | { |
no test coverage detected