From 98f6f6c82a76da47c4bf309dc76915a8fd0658b2 Mon Sep 17 00:00:00 2001 From: Artyom Date: Sat, 18 May 2024 16:48:20 +0300 Subject: [PATCH] =?UTF-8?q?Build:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D1=8B=D0=B5=20=D1=82=D0=B5=D1=81=D1=82=D1=8B=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=BF=D0=B5=D1=80=D1=81=D0=BE=D0=BD=D0=B0=D0=BB=D1=8C?= =?UTF-8?q?=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=B2=D0=B0=D1=80=D0=B8=D0=B0=D0=BD?= =?UTF-8?q?=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- personal_unittest.cbp | 40 +++++++++++++++++++++++++++++++++++++ personal_unittest.cpp | 18 +++++++++++++++++ styled_text_func_internal.h | 5 +++++ 3 files changed, 63 insertions(+) create mode 100644 personal_unittest.cbp create mode 100644 personal_unittest.cpp create mode 100644 styled_text_func_internal.h diff --git a/personal_unittest.cbp b/personal_unittest.cbp new file mode 100644 index 0000000..bf3f07b --- /dev/null +++ b/personal_unittest.cbp @@ -0,0 +1,40 @@ + + + + + + diff --git a/personal_unittest.cpp b/personal_unittest.cpp new file mode 100644 index 0000000..4a8c982 --- /dev/null +++ b/personal_unittest.cpp @@ -0,0 +1,18 @@ +#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/styled_text_func_internal.h b/styled_text_func_internal.h new file mode 100644 index 0000000..1919042 --- /dev/null +++ b/styled_text_func_internal.h @@ -0,0 +1,5 @@ +#pragma once +#include + +std::string +styled_text_func ();