public void ShouldReturnFalseWhenContentTypeIsNotSsh(ContentType type)
 {
     arguments.ContentType = type;
     Assert.IsFalse(arguments.IsContentTypeSsh);
 }
 public void ShouldReturnTrueWhenContentTypeIsSsh(ContentType type)
 {
     arguments.ContentType = type;
     Assert.IsTrue(arguments.IsContentTypeSsh);
 }