github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/hadoopfs/src/test/java/io/lakefs/contract/hadoop2/TestLakeFSFileSystemContractHadoop2.java (about) 1 package io.lakefs.contract.hadoop2; 2 3 import io.lakefs.contract.TestLakeFSFileSystemContract; 4 import org.apache.hadoop.fs.Path; 5 6 public class TestLakeFSFileSystemContractHadoop2 extends TestLakeFSFileSystemContract { 7 @Override 8 protected void setUp() throws Exception { 9 super.setUp(); 10 super.init(); 11 } 12 13 @Override 14 protected Path path(String pathString) { 15 return new Path(pathPrefix + pathString); 16 } 17 }