Пример #1
0
 public virtual void test_of_lookup_null()
 {
     assertThrowsIllegalArg(() => PutCall.of(null));
 }
Пример #2
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(PutCall convention, String name)
        public virtual void test_of_lookupLowerCase(PutCall convention, string name)
        {
            assertEquals(PutCall.of(name.ToLower(Locale.ENGLISH)), convention);
        }
Пример #3
0
 public virtual void test_of_lookup_notFound()
 {
     assertThrowsIllegalArg(() => PutCall.of("Rubbish"));
 }
Пример #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(PutCall convention, String name)
        public virtual void test_of_lookup(PutCall convention, string name)
        {
            assertEquals(PutCall.of(name), convention);
        }