github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/hadoopfs/src/test/java/io/lakefs/contract/hadoop3/TestLakeFSFileSystemContractHadoop3.java (about)

     1  package io.lakefs.contract.hadoop3;
     2  
     3  import io.lakefs.contract.TestLakeFSFileSystemContract;
     4  import org.junit.Before;
     5  
     6  public class TestLakeFSFileSystemContractHadoop3 extends TestLakeFSFileSystemContract {
     7      @Override
     8      @Before
     9      public void init() throws Exception {
    10          super.init();
    11      }
    12  
    13      public boolean rootDirTestEnabled() {
    14          return false;
    15      }
    16  
    17      public void testRenameDirToSelf() {
    18      }
    19  
    20      public void testRootDirAlwaysExists() {
    21      }
    22  
    23      public void testRenameFileAsExistingFile() {
    24      }
    25  
    26      public void testRenameDirectoryAsExistingDirectory() {
    27      }
    28  
    29      public void testRenameChildDirForbidden() {
    30      }
    31  
    32      public void testLSRootDir() throws Throwable {
    33      }
    34  
    35      public void testListStatusRootDir() throws Throwable {
    36      }
    37  }