示例#1
0
 @Test
 public void checkTransformLoadTable() {
   LoadTable input = createMock(LoadTable.class);
   replayAll();
   SelectionSplitter subject = new SelectionSplitter();
   IRelAlgExpr result = subject.transformLoadTable(input);
   verifyAll();
   assertThat(result, is(equalTo((IRelAlgExpr) input)));
 }