public void TestStringNullDefaultValue() { IDataPortal <PropertyInfoRoot> dataPortal = _testDIContext.CreateDataPortal <PropertyInfoRoot>(); Assert.AreEqual(null, PropertyInfoRoot.StringNullDefaultValueProperty.DefaultValue); Assert.AreEqual(null, PropertyInfoRoot.NewPropertyInfoRoot(dataPortal).StringNullDefaultValue); }
public void TestDefaultValue() { IDataPortal <PropertyInfoRoot> dataPortal = _testDIContext.CreateDataPortal <PropertyInfoRoot>(); Assert.AreEqual("x", PropertyInfoRoot.NameDefaultValueProperty.DefaultValue); Assert.AreEqual("x", PropertyInfoRoot.NewPropertyInfoRoot(dataPortal).NameDefaultValue); }
public void TestStringNullDefaultValue() { Assert.AreEqual(null, PropertyInfoRoot.StringNullDefaultValueProperty.DefaultValue); Assert.AreEqual(null, PropertyInfoRoot.NewPropertyInfoRoot().StringNullDefaultValue); }
public void TestDefaultValue() { Assert.AreEqual("x", PropertyInfoRoot.NameDefaultValueProperty.DefaultValue); Assert.AreEqual("x", PropertyInfoRoot.NewPropertyInfoRoot().NameDefaultValue); }