Exemple #1
0
        public void Disable_all_regions()
        {
            var property = new MaskedAuditableProperty(session, typeof(Test).GetProperty("MaskRegion"), "Регион", 0UL, ulong.MaxValue);

            Assert.That(property.ToString(), Is.EqualTo("$$$Изменено 'Регион' Удалено 'Все регионы'"));
        }
Exemple #2
0
        public void Change_region()
        {
            var property = new MaskedAuditableProperty(session, typeof(Test).GetProperty("MaskRegion"), "Регион", 1UL, 16UL);

            Assert.That(property.ToString(), Is.EqualTo("$$$Изменено 'Регион' Удалено 'Тамбов' Добавлено 'Воронеж'"));
        }
Exemple #3
0
        public void Ignore_unknown_region()
        {
            var property = new MaskedAuditableProperty(session, typeof(Test).GetProperty("MaskRegion"), "Регион", 0UL, 18446742976345407488UL);

            Assert.That(property.ToString(), Is.StringContaining("$$$Изменено 'Регион' Удалено 'Ижевск'"));
        }
Exemple #4
0
        public void Build_region()
        {
            var property = new MaskedAuditableProperty(session, typeof(Test).GetProperty("MaskRegion"), "Регион", 4ul, 5ul);

            Assert.That(property.ToString(), Is.EqualTo("$$$Изменено 'Регион' Удалено 'Воронеж'"));
        }