示例#1
0
 private static EventTwoArrayOfObject SendAssertTwoArray(
     RegressionEnvironment env,
     EventTwoArrayOfObject expectedRemove,
     string id,
     object[] one,
     object[] two)
 {
     var @event = new EventTwoArrayOfObject(id, one, two);
     env.SendEventBean(@event);
     AssertExpectedRemove(env, expectedRemove);
     return @event;
 }
示例#2
0
 protected bool Equals(EventTwoArrayOfObject other)
 {
     return(id == other.id && Arrays.DeepEquals(one, other.one) && Arrays.DeepEquals(two, other.two));
 }