mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-30 08:27:52 +00:00
Added Visual Studio project and fixed up some warnings showing in VS
This commit is contained in:
parent
7e8cfa714f
commit
d8aa843c7d
14 changed files with 307 additions and 9 deletions
|
@ -95,7 +95,7 @@ namespace Catch
|
|||
{
|
||||
testInfo.invoke();
|
||||
}
|
||||
catch( TestFailureException& ex )
|
||||
catch( TestFailureException& )
|
||||
{
|
||||
// This just means the test was aborted due to failure
|
||||
}
|
||||
|
@ -118,7 +118,7 @@ namespace Catch
|
|||
{
|
||||
return m_successes;
|
||||
}
|
||||
std:: size_t getFailures() const
|
||||
std:: size_t getFailureCount() const
|
||||
{
|
||||
return m_failures;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue