示例#1
0
 public virtual void test_of_lookup_notFound()
 {
     assertThrowsIllegalArg(() => CurveNodeClashAction.of("Rubbish"));
 }
示例#2
0
 public virtual void test_of_lookup_null()
 {
     assertThrowsIllegalArg(() => CurveNodeClashAction.of(null));
 }
示例#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_lookup(CurveNodeClashAction convention, String name)
        public virtual void test_of_lookup(CurveNodeClashAction convention, string name)
        {
            assertEquals(CurveNodeClashAction.of(name), convention);
        }