示例#1
0
 public virtual void test_of_lookup_null()
 {
     assertThrowsIllegalArg(() => LongShort.of(null));
 }
示例#2
0
 public virtual void test_of_lookup_notFound()
 {
     assertThrowsIllegalArg(() => LongShort.of("Rubbish"));
 }
示例#3
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_lookupLowerCase(LongShort convention, String name)
        public virtual void test_of_lookupLowerCase(LongShort convention, string name)
        {
            assertEquals(LongShort.of(name.ToLower(Locale.ENGLISH)), convention);
        }
示例#4
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(LongShort convention, String name)
        public virtual void test_of_lookup(LongShort convention, string name)
        {
            assertEquals(LongShort.of(name), convention);
        }
示例#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_toString(LongShort convention, String name)
        public virtual void test_toString(LongShort convention, string name)
        {
            assertEquals(convention.ToString(), name);
        }
示例#6
0
 //-------------------------------------------------------------------------
 public virtual void test_ofLong()
 {
     assertEquals(LongShort.ofLong(true), LongShort.LONG);
     assertEquals(LongShort.ofLong(false), LongShort.SHORT);
 }