Solving the diamond kata with property-based testing series
- How to get started with Property-based Testing in C#
- Input generators in property-based tests with FsCheck
- First and Last line content
- Height equals Width
- Outside space symmetry
- Symmetry around the vertical axis
- Symmetry around the horizontal axis
- No padding for input letter row
- Letters order
All code samples are available on github
Intro
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.
First and last line content
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----
C# Tests
[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 diamond -
First() / Last()
Takes the first/last line of the generated diamond -
Contains('A')
Checks if the line contains the letterA
and returns a bool -
ToProperty()
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
Wrapping up
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.
Solving the diamond kata with property-based testing series
- How to get started with Property-based Testing in C#
- Input generators in property-based tests with FsCheck
- First and Last line content
- Height equals Width
- Outside space symmetry
- Symmetry around the vertical axis
- Symmetry around the horizontal axis
- No padding for input letter row
- Letters order
All code samples are available on github
Top comments (0)