[Test]
[Category("P1")]
- [Description("Check whether MinimunLength returns expected value or not.")]
- [Property("SPEC", "Tizen.Security.DevicePolicyManager.PasswordPolicy.MinimunLength A")]
+ [Description("Check whether MinimumLength returns expected value or not.")]
+ [Property("SPEC", "Tizen.Security.DevicePolicyManager.PasswordPolicy.MinimumLength A")]
[Property("SPEC_URL", "-")]
[Property("CRITERIA", "PRO")]
[Property("AUTHOR", "Yeji Kim, yeji01.kim@samsung.com")]
- public void MinimunLength_READ_ONLY()
+ public void MinimumLength_READ_ONLY()
{
- Assert.IsInstanceOf<int>(_passwordPolicy.MinimumRequiredComplexChars);
- Assert.IsTrue(_passwordPolicy.MinimumRequiredComplexChars == 0,
- "The value of MinimunLength property should match value from getter");
+ Assert.IsInstanceOf<int>(_passwordPolicy.MinimumLength);
+ Assert.IsTrue(_passwordPolicy.MinimumLength == 0,
+ "The value of MinimumLength property should match value from getter");
}
[Test]