We continue our adventure trying to solve the Diamond Kata while using Property-Based testing. Last time, we added our first test, Non-empty, and discovered how to use input generators. Now let's figure out the next test.
In the diamond Kata, the first and last line of every diamond always contains A. Such regularity is perfect for a property. Even the particular case with input A, where the first line is also the last one, respects that property.
e.g.
input: A
A
input: E
----A----
---B-B---
--C---C--
-D-----D-
E-------E
-D-----D-
--C---C--
---B-B---
----A----
[Property(Arbitrary = new[] { typeof(LetterGenerator) })]
public Property FirstLineContainsA(char c)
{
return Diamond.Generate(c).First().Contains('A').ToProperty();
}
[Property(Arbitrary = new[] { typeof(LetterGenerator) })]
public Property LastLineContainsA(char c)
{
return Diamond.Generate(c).Last().Contains('A').ToProperty();
}
Here we used some built-in methods of the .NET library, which makes these tests simple to read and short to write. It almost reads like a sentence.
Diamond.Generate(c) Generates the diamondFirst() / Last() Takes the first/last line of the generated diamondContains('A') Checks if the line contains the letter A and returns a boolToProperty() Transforms a boolean expression to a property
If you are wondering what's [Property(Arbitrary = new[] { typeof(LetterGenerator) })] it's probably because you missed my previous post
We are making some good progress towards a fully functioning test suite. However, there are still some uncovered areas that we'll address with more tests next time.
Previously published at https://blog.miguelbernard.com/first-and-last-line-content/