| 815 | } |
| 816 | |
| 817 | bool SubcaseSignature::operator<(const SubcaseSignature& other) const { |
| 818 | if(m_line != other.m_line) |
| 819 | return m_line < other.m_line; |
| 820 | if(std::strcmp(m_file, other.m_file) != 0) |
| 821 | return std::strcmp(m_file, other.m_file) < 0; |
| 822 | return m_name.compare(other.m_name) < 0; |
| 823 | } |
| 824 | |
| 825 | DOCTEST_DEFINE_INTERFACE(IContextScope) |
| 826 |