-
Notifications
You must be signed in to change notification settings - Fork 1
RomanNumeral.Spec.Equality
As a library user
I want to use equality methods and operands
So that I can check the equality of two roman numerals
Given the roman numeral V
When compared to 5
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to 10
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to 5
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to C
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to X
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to XV
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When equal to XV
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When not equal to XV
Then is True
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to 'null'
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral N
When equal to 'null'
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When not equal to 'null'
Then is True
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to 'null'
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to V
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to V
Then is True
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When compared to V
Then is True
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When equal to V
Then is True
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral V
When not equal to V
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral 'null'
When equal to N
Then is False
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral 'null'
When not equal to V
Then is True
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral 'null'
When equal to 'null'
Then is True
Tags: RomanNumeral, Equality, Non-generic
Given the roman numeral 'null'
When not equal to 'null'
Then is False
Tags: RomanNumeral, Equality, Non-generic