예제 #1
0
        public void TestConvertValueToType_Plain()
        {
            String expected = "Not yet implemented";

            byte[] converted = (byte[])fixture.ConvertValueToType(typeof(byte[]), typeof(String), expected, null);
            String actual    = (String)fixture.ConvertValueToType(typeof(String), typeof(byte[]), converted, null);

            Assert.AreEqual(expected, actual);
        }