예제 #1
0
            public void HasProtection_CorrectCategory_OK(
                [ValueSource(typeof(ValuesEnumerator), "GetValues")] ProtectionType.ProtectionCategoryCodes category)
            {
                var ret = ProtectionType.HasProtection(new ProtectionType[] { new ProtectionType()
                                                                              {
                                                                                  ProtectionCategoryCode = category
                                                                              } }, DateTime.Today, category);

                Assert.True(ret);
            }
예제 #2
0
            public void HasProtection_CorrectType_True(
                [ValueSource(typeof(ValuesEnumerator), "GetValues")] ProtectionType.ProtectionCategoryCodes category)
            {
                var pro = new ProtectionType {
                    ProtectionCategoryCode = category
                };
                var ret = pro.HasProtection(DateTime.Today, category);

                Assert.True(ret);
            }
예제 #3
0
            public void HasProtection_CorrectTypeOutOfDateRange_False(
                [ValueSource(typeof(ValuesEnumerator), "GetValues")] ProtectionType.ProtectionCategoryCodes category)
            {
                DateTime today = DateTime.Today;
                var      pro   = new ProtectionType {
                    ProtectionCategoryCode = category, StartDate = today.AddDays(1), EndDate = today.AddDays(2)
                };
                var ret = pro.HasProtection(today, category);

                Assert.False(ret);
            }
예제 #4
0
            public void HasProtection_CorrectTypeWithDateRange_True(
                [ValueSource(typeof(ValuesEnumerator), "GetValues")] ProtectionType.ProtectionCategoryCodes category,
                [Values(0, 1, 2)] int offset)
            {
                DateTime today = DateTime.Today;
                var      pro   = new ProtectionType {
                    ProtectionCategoryCode = category, StartDate = today.AddDays(-offset), EndDate = today.AddDays(offset)
                };
                var ret = pro.HasProtection(today, category);

                Assert.True(ret);
            }
예제 #5
0
 public void HasProtection_Null_Exception(
     [ValueSource(typeof(ValuesEnumerator), "GetValues")] ProtectionType.ProtectionCategoryCodes category)
 {
     ProtectionType.HasProtection(null, DateTime.Today, category);
 }