| 10874 | } |
| 10875 | |
| 10876 | std::string WildcardPattern::adjustCase(std::string const &str) const { |
| 10877 | return m_caseSensitivity == CaseSensitive::No ? toLower(str) : str; |
| 10878 | } |
| 10879 | } // namespace Catch |
| 10880 | // end catch_wildcard_pattern.cpp |
| 10881 | // start catch_xmlwriter.cpp |