public void addTest(OgnlTestCase testCase) { if (cases == null) { cases = new ArrayList(); } cases.Add(testCase); }
public override bool Equals(object other) { bool result = false; if (other is Simple) { Simple os = (Simple)other; result = OgnlTestCase.isEqual(os.getStringValue(), getStringValue()) && (os.getIntValue() == getIntValue()); } return(result); }