Сравнить коммиты
2 Коммитов
7b584264f5
...
44949175d5
Автор | SHA1 | Дата |
---|---|---|
|
44949175d5 | 12 месяцев назад |
|
bf2f0d2977 | 12 месяцев назад |
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef INPUT_COLORS_INTERNAL_H_INCLUDED
|
||||||
|
#define INPUT_COLORS_INTERNAL_H_INCLUDED
|
||||||
|
|
||||||
|
void
|
||||||
|
input_colors(std::string &colors_stroke, std::string &colors_fill);
|
||||||
|
|
||||||
|
|
||||||
|
#endif // INPUT_COLORS_INTERNAL_H_INCLUDED
|
@ -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");
|
||||||
|
}
|
Загрузка…
Ссылка в новой задаче