Example #1
0
 private static EventTwoDimArray SendAssertInt2DimArray(
     RegressionEnvironment env,
     EventTwoDimArray expectedRemove,
     string id,
     int[][] ints)
 {
     var @event = new EventTwoDimArray(id, ints);
     env.SendEventBean(@event);
     AssertExpectedRemove(env, expectedRemove);
     return @event;
 }
 protected bool Equals(EventTwoDimArray other)
 {
     return(_id == other._id && Arrays.DeepEquals(_array, other._array));
 }