We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
flower-field
1 parent a98c6e8 commit dd260c3Copy full SHA for dd260c3
exercises/practice/flower-field/.meta/tests.toml
@@ -44,3 +44,6 @@ description = "cross"
44
45
[dd9d4ca8-9e68-4f78-a677-a2a70fd7a7b8]
46
description = "large garden"
47
+
48
+[6e4ac13a-3e43-4728-a2e3-3551d4b1a996]
49
+description = "multiple adjacent flowers"
exercises/practice/flower-field/FlowerFieldTests.cs
@@ -187,4 +187,16 @@ public void Large_garden()
187
];
188
Assert.Equal(expected, FlowerField.Annotate(garden));
189
}
190
191
+ [Fact(Skip = "Remove this Skip property to run this test")]
192
+ public void Multiple_adjacent_flowers()
193
+ {
194
+ string[] garden = [
195
+ " ** "
196
+ ];
197
+ string[] expected = [
198
+ "1**1"
199
200
+ Assert.Equal(expected, FlowerField.Annotate(garden));
201
+ }
202
0 commit comments