Exemplo n.º 1
0
        public void CreateForSql_StructWithoutCast_ThrowsInvalidCastException()
        {
            var act = Assert.Throws <InvalidCastException>(() =>
            {
                var val = new StructWithoutRequiredCast("test");
                SvoParameter.CreateForSql("par", val);
            });

            Assert.AreEqual("Cast from Qowaiv.UnitTests.Data.StructWithoutRequiredCast to System.String is not valid.", act.Message);
        }
Exemplo n.º 2
0
 public void CreateForSql_StructWithoutCast_ThrowsInvalidCastException()
 {
     var act = Assert.Throws<InvalidCastException>(() =>
     {
         var val = new StructWithoutRequiredCast("test");
         SvoParameter.CreateForSql("par", val);
     });
     Assert.AreEqual("Cast from Qowaiv.UnitTests.Data.StructWithoutRequiredCast to System.String is not valid.", act.Message);
 }