diff --git a/lab3_personal/personal_unittest.cbp b/lab3_personal/personal_unittest.cbp deleted file mode 100644 index ed270fe..0000000 --- a/lab3_personal/personal_unittest.cbp +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - diff --git a/lab3_personal/personal_unittest.cpp b/lab3_personal/personal_unittest.cpp deleted file mode 100644 index 4a8c982..0000000 --- a/lab3_personal/personal_unittest.cpp +++ /dev/null @@ -1,18 +0,0 @@ -#define DOCTEST_CONFIG_NO_MULTITHREADING -#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN -#include "doctest.h" -#include "styled_text_func_internal.h" -#include - -TEST_CASE("Some mistakes in words") { - std::string text_style = styled_text_func (); - CHECK(text_style == "underline"); -} -TEST_CASE("Not using any style") { - std::string text_style = styled_text_func (); - CHECK(text_style == "none"); -} -TEST_CASE("Using 'none' as style after answering 'Yes'") { - std::string text_style = styled_text_func (); - CHECK(text_style == "none"); -} diff --git a/lab3_personal/styled_text_func_internal.h b/lab3_personal/styled_text_func_internal.h deleted file mode 100644 index 1919042..0000000 --- a/lab3_personal/styled_text_func_internal.h +++ /dev/null @@ -1,5 +0,0 @@ -#pragma once -#include - -std::string -styled_text_func ();