From 48de4476ce83a7809fd014b7f3808c9067dff578 Mon Sep 17 00:00:00 2001 From: "Artyom (StepanovAV)" Date: Sun, 21 Apr 2024 00:59:35 +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 --- Tests.txt | 11 +++++++++++ personal_unittest.cbp | 36 ++++++++++++++++++++++++++++++++++++ personal_unittest.cpp | 22 ++++++++++++++++++++++ styled_text_func_internal.h | 5 +++++ 4 files changed, 74 insertions(+) create mode 100644 Tests.txt create mode 100644 personal_unittest.cbp create mode 100644 personal_unittest.cpp create mode 100644 styled_text_func_internal.h diff --git a/Tests.txt b/Tests.txt new file mode 100644 index 0000000..9e1a5f9 --- /dev/null +++ b/Tests.txt @@ -0,0 +1,11 @@ +Yes +n0ne +overLINE +underline + +No + +Yes +0verline +UNDERLINE +none \ No newline at end of file diff --git a/personal_unittest.cbp b/personal_unittest.cbp new file mode 100644 index 0000000..745d8ba --- /dev/null +++ b/personal_unittest.cbp @@ -0,0 +1,36 @@ + + + + + + diff --git a/personal_unittest.cpp b/personal_unittest.cpp new file mode 100644 index 0000000..cdf16a6 --- /dev/null +++ b/personal_unittest.cpp @@ -0,0 +1,22 @@ +#define DOCTEST_CONFIG_NO_MULTITHREADING +#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN +#include "doctest.h" +#include "styled_text_func_internal.h" +#include +#include + +TEST_CASE("Some mistakes in words") { + std::string text_style = styled_text_func (); + std::ifstream f ("Tests.txt"); + CHECK(text_style == "underline"); +} +TEST_CASE("Not using any style") { + std::string text_style = styled_text_func (); + std::ifstream f ("Tests.txt"); + CHECK(text_style == "none"); +} +TEST_CASE("Using 'none' as style after answering 'Yes'") { + std::string text_style = styled_text_func (); + std::ifstream f ("Tests.txt"); + 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 ();