private void AssertValueConsistency(string localizationName, bool forMobile = false)
        {
            var service = new ResourceComparingService(localizationName, forMobile);

            Assert.IsTrue(service.AreValuesConsistent(), service.GetDifferentValueString());
        }
Beispiel #2
0
        private void AssertKeyIdentity(string localizationName, bool forMobile = false)
        {
            var service = new ResourceComparingService(localizationName, forMobile);

            Assert.IsTrue(service.AreKeysIdentical(), service.GetDifferentKeysString());
        }