Esempio n. 1
0
 //-------------------------------------------------------------------------
 public virtual void test_ofDayOfWeek()
 {
     foreach (DayOfWeek dow in DayOfWeek.values())
     {
         RollConvention test = RollConvention.ofDayOfWeek(dow);
         assertEquals(test.Name, "Day" + CaseFormat.UPPER_UNDERSCORE.converterTo(CaseFormat.UPPER_CAMEL).convert(dow.ToString()).substring(0, 3));
         assertEquals(test.ToString(), "Day" + CaseFormat.UPPER_UNDERSCORE.converterTo(CaseFormat.UPPER_CAMEL).convert(dow.ToString()).substring(0, 3));
         assertSame(RollConvention.of(test.Name), test);
         assertSame(RollConvention.of("DAY" + dow.ToString().Substring(0, 3)), test);
     }
 }
Esempio n. 2
0
 //-------------------------------------------------------------------------
 public virtual void test_ofDayOfMonth()
 {
     for (int i = 1; i < 30; i++)
     {
         RollConvention test = RollConvention.ofDayOfMonth(i);
         assertEquals(test.adjust(date(2014, JULY, 1)), date(2014, JULY, i));
         assertEquals(test.Name, "Day" + i);
         assertEquals(test.ToString(), "Day" + i);
         assertSame(RollConvention.of(test.Name), test);
         assertSame(RollConvention.of("DAY" + i), test);
     }
 }
Esempio n. 3
0
 public virtual void test_of_lookup_null()
 {
     assertThrowsIllegalArg(() => RollConvention.of(null));
 }
Esempio n. 4
0
 public virtual void test_of_lookup_notFound()
 {
     assertThrowsIllegalArg(() => RollConvention.of("Rubbish"));
 }
Esempio n. 5
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test(dataProvider = "name") public void test_of_lookup(RollConvention convention, String name)
        public virtual void test_of_lookup(RollConvention convention, string name)
        {
            assertEquals(RollConvention.of(name), convention);
        }