1 21 package org.dbunit.operation; 22 23 28 public class TruncateTableOperationTest extends DeleteAllOperationTest 29 { 30 public TruncateTableOperationTest(String s) 31 { 32 super(s); 33 } 34 35 protected DatabaseOperation getDeleteAllOperation() 36 { 37 return new TruncateTableOperation(); 38 } 39 40 protected String getExpectedStament(String tableName) 41 { 42 return "truncate table " + tableName; 43 } 44 } 45 46 | Popular Tags |