From 364ce236b375ecae3a33100d689d8ae60a5e6da3 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Fri, 11 Feb 2022 01:38:39 +0100 Subject: Yeeted miso --- StringTools/Test/Test.vcxproj.filters | 31 ------------------------------- StringTools/Test/test.cpp | 21 --------------------- 2 files changed, 52 deletions(-) delete mode 100644 StringTools/Test/Test.vcxproj.filters delete mode 100644 StringTools/Test/test.cpp (limited to 'StringTools/Test') diff --git a/StringTools/Test/Test.vcxproj.filters b/StringTools/Test/Test.vcxproj.filters deleted file mode 100644 index 10b98cf..0000000 --- a/StringTools/Test/Test.vcxproj.filters +++ /dev/null @@ -1,31 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Quelldateien - - - Quelldateien - - - Quelldateien - - - Quelldateien - - - \ No newline at end of file diff --git a/StringTools/Test/test.cpp b/StringTools/Test/test.cpp deleted file mode 100644 index 80b7166..0000000 --- a/StringTools/Test/test.cpp +++ /dev/null @@ -1,21 +0,0 @@ -#define CATCH_CONFIG_MAIN -#include "Catch2.h" - -int Add(int a, int b) -{ - return a+b; -} - -TEST_CASE("Add works with zeroes", "[add]") -{ - REQUIRE(Add(0, 0) == 0); - REQUIRE(Add(5, 0) == 5); - REQUIRE(Add(0, 5) == 5); -} - -TEST_CASE("Add works with negatives", "[add]") -{ - REQUIRE(Add(-5, 0) == -5); - REQUIRE(Add(0, -5) == -5); - REQUIRE(Add(-5, -5) == -10); -} -- cgit v1.2.3