Skip to content

Commit

Permalink
Trying to figure out where the Windows Segfault is at
Browse files Browse the repository at this point in the history
  • Loading branch information
eljonny committed Mar 26, 2024
1 parent b46f496 commit a3aea5a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/include/TestCase/TestCaseTests.hpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
#include "TestCaseTestChunks.h"

using std::cout;
using std::endl;

namespace TestCPP {
namespace Testing {
namespace TestCaseTests {
void TestConstructCase() {
cout << "Construct basic" << endl;
TestCase * test = new TestCase(
string("ConstructCase case Test - bare minimum"),
function<void()>([](){})
);
delete test;

cout << "Construct with nullptr string" << endl;
TestSuite::assertThrows(
[]() {
new TestCase(
Expand Down

0 comments on commit a3aea5a

Please sign in to comment.