From 600774d84d6787361fd5c277fcb8cca898466ec4 Mon Sep 17 00:00:00 2001 From: KapitonovMikA Date: Mon, 20 May 2024 04:05:58 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D1=82=D0=B5=D1=81=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- unittest_personal.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 unittest_personal.cpp diff --git a/unittest_personal.cpp b/unittest_personal.cpp new file mode 100644 index 0000000..0844e90 --- /dev/null +++ b/unittest_personal.cpp @@ -0,0 +1,20 @@ +#define DOCTEST_CONFIG_NO_MULTITHREADING +#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN +#include "doctest.h" +#include "input_colors_internal.h" + +TEST_CASE("Mistakes in spelling") { + std::string colors_stroke = "black"; + std::string colors_fill = "green"; + input_colors(colors_stroke, colors_fill); + CHECK(colors_stroke == "yellow"); + CHECK(colors_fill == "pink"); +} + +TEST_CASE("The answer is No") { + std::string colors_stroke = "black"; + std::string colors_fill = "green"; + input_colors(colors_stroke, colors_fill); + CHECK(colors_stroke == "black"); + CHECK(colors_fill == "green"); +}