mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Regenerated single header
This commit is contained in:
parent
3fd7dc0218
commit
4a0a70a82e
@ -2706,7 +2706,7 @@ namespace Catch
|
||||
)
|
||||
const
|
||||
{
|
||||
return *m_test == *other.m_test && m_name == other.m_name && m_description == other.m_description;
|
||||
return *m_test == *other.m_test && m_name == other.m_name;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////
|
||||
@ -2716,12 +2716,7 @@ namespace Catch
|
||||
)
|
||||
const
|
||||
{
|
||||
if( m_name < other.m_name )
|
||||
return true;
|
||||
if( m_name > other.m_name )
|
||||
return false;
|
||||
|
||||
return *m_test < *other.m_test;
|
||||
return m_name < other.m_name;
|
||||
}
|
||||
|
||||
private:
|
||||
@ -3110,6 +3105,14 @@ namespace Catch
|
||||
m_functions.insert( testInfo );
|
||||
m_functionsInOrder.push_back( testInfo );
|
||||
}
|
||||
else
|
||||
{
|
||||
const TestCaseInfo& prev = *m_functions.find( testInfo );
|
||||
std::cerr << "error: TEST_CASE( \"" << testInfo.getName() << "\" ) already defined.\n"
|
||||
<< "\tFirst seen at " << prev.getFilename() << ":" << prev.getLine() << "\n"
|
||||
<< "\tRedefined at " << testInfo.getFilename() << ":" << testInfo.getLine() << std::endl;
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
Reference in New Issue
Block a user