Added tags

This commit is contained in:
tastytea 2019-01-02 15:48:18 +01:00
parent 55de144050
commit 97ced01ffa
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
3 changed files with 12 additions and 12 deletions

View File

@ -5,9 +5,9 @@
using std::string;
SCENARIO("ltr_asymmetric: Correct placement")
SCENARIO("ltr_asymmetric: Correct placement", "[ltr_asymmetric]")
{
GIVEN("An identicon instance with 2x2 dots")
GIVEN("An identiconpp instance with 2x2 dots")
{
Identiconpp identicon(2, 2, Identiconpp::algorithm::ltr_asymmetric);
Magick::Image img;
@ -86,9 +86,9 @@ SCENARIO("ltr_asymmetric: Correct placement")
}
}
SCENARIO("ltr_asymmetric: Correct color")
SCENARIO("ltr_asymmetric: Correct color", "[ltr_asymmetric]")
{
GIVEN("An identicon instance with 5 foreground colors")
GIVEN("An identiconpp instance with 5 foreground colors")
{
Identiconpp identicon(1, 1, Identiconpp::algorithm::ltr_asymmetric,
"ffffffff",

View File

@ -5,9 +5,9 @@
using std::string;
SCENARIO("ltr_symmetric: Correct placement")
SCENARIO("ltr_symmetric: Correct placement", "[ltr_symmetric]")
{
GIVEN("An identicon instance with 2x2 dots")
GIVEN("An identiconpp instance with 2x2 dots")
{
Identiconpp identicon(2, 2, Identiconpp::algorithm::ltr_symmetric);
Magick::Image img;
@ -86,9 +86,9 @@ SCENARIO("ltr_symmetric: Correct placement")
}
}
SCENARIO("ltr_symmetric: Correct color")
SCENARIO("ltr_symmetric: Correct color", "[ltr_symmetric]")
{
GIVEN("An identicon instance with 5 foreground colors")
GIVEN("An identiconpp instance with 5 foreground colors")
{
Identiconpp identicon(1, 1, Identiconpp::algorithm::ltr_symmetric,
"ffffffff",

View File

@ -5,9 +5,9 @@
using std::string;
SCENARIO("sigil: Correct placement")
SCENARIO("sigil: Correct placement", "[sigil]")
{
GIVEN("An identicon instance with 2x2 dots")
GIVEN("An identiconpp instance with 2x2 dots")
{
Identiconpp identicon(2, 2, Identiconpp::algorithm::sigil);
Magick::Image img;
@ -86,9 +86,9 @@ SCENARIO("sigil: Correct placement")
}
}
SCENARIO("sigil: Correct color")
SCENARIO("sigil: Correct color", "[sigil]")
{
GIVEN("An identicon instance with 5 foreground colors")
GIVEN("An identiconpp instance with 5 foreground colors")
{
Identiconpp identicon(1, 1, Identiconpp::algorithm::sigil,
"ffffffff",