public void Matches_WhentransformCodeIsNull_ThrowsArgumentNullException(StartUpperTransformer unit)
 {
     Should.Throw <ArgumentNullException>(() => unit.Matches(null));
 }
 public void Matches_WhentransformCodeIsNotStartUpper_ReturnsFalse(StartUpperTransformer unit, string transformCode)
 {
     unit.Matches(transformCode).ShouldBeFalse();
 }
 public void Matches_WhentransformCodeIsStartUpper_ReturnsTrue(StartUpperTransformer unit)
 {
     unit.Matches("StartUpper").ShouldBeTrue();
 }