| 382 | } |
| 383 | |
| 384 | FeatureUnsupportedFailure::FeatureUnsupportedFailure(UtestShell* test, const char* fileName, size_t lineNumber, |
| 385 | const SimpleString& featureName, const SimpleString& text) |
| 386 | : TestFailure(test, fileName, lineNumber) |
| 387 | { |
| 388 | message_ = createUserText(text); |
| 389 | |
| 390 | message_ += StringFromFormat("The feature \"%s\" is not supported in this environment or with the feature set selected when building the library.", featureName.asCharString()); |
| 391 | } |
nothing calls this directly
no test coverage detected