public static void MutateTransformsCharToUppercase()
		{
			var attribute = new ToUpperAttribute();

			Assert.Equal('U', attribute.Mutate('u'));
		}
		public static void MutateTransformsStringToUppercase()
		{
			var attribute = new ToUpperAttribute();

			Assert.Equal("UPPERCASE", attribute.Mutate("uppercase"));
		}