private void AssertValueConsistency(string localizationName, bool forMobile = false) { var service = new ResourceComparingService(localizationName, forMobile); Assert.IsTrue(service.AreValuesConsistent(), service.GetDifferentValueString()); }
private void AssertKeyIdentity(string localizationName, bool forMobile = false) { var service = new ResourceComparingService(localizationName, forMobile); Assert.IsTrue(service.AreKeysIdentical(), service.GetDifferentKeysString()); }