I have a static class Cryptographic that can Encypt and Decrypt a string. I have written the following specs for this:
[Subject(typeof(Cryptographic))]
class When_encrypting_and_decrypting_a_string
{
Establish context = () => { input = "teststring"; };
Because of = () =>
{
output = Cryptographic.Decrypt(Cryptographic.Encrypt(input));
};
It should_decrypt_what_was_encrypted = () => input.ShouldEqual(output);
static string input;
static string output;
}
[Subject(typeof(Cryptographic))]
class When_encrypting_and_decrypting_an_empty_string
{
Establish context = () => { input = string.Empty; };
Because of = () =>
{
output = Cryptographic.Decrypt(Cryptographic.Encrypt(input));
};
It should_decrypt_what_was_encrypted = () => input.ShouldEqual(output);
static string input;
static string output;
}
[Subject(typeof(Cryptographic))]
class When_encrypting_and_decrypting_a_null_string
{
Establish context = () => { input = null; };
Because of = () =>
{
output = Cryptographic.Decrypt(Cryptographic.Encrypt(input));
};
It should_decrypt_what_was_encrypted = () => input.ShouldEqual(output);
static string input;
static string output;
}
Is this a clean BDD unittest? Is there anything that can be improved? A couple of concerns from my side:
- I might be testing two things here, where I actually should test
one. I have both
EncryptandDecryptin theBecause. - The test involve a lot of copy and paste, all the test only differ by its input argument. Can or should this be improved, maybe
by using some sort of row test, or a common base class or a
Behavesclause instead? I mean readability is now pretty optimal but maintainability is not. If I optimize maintainability (DRY) I might be trading in readability.
How would you write the tests/specs for this?