MCPcopy Index your code
hub / github.com/apache/orc / TestConf

Interface TestConf

java/core/src/test/org/apache/orc/TestConf.java:27–47  ·  view source on GitHub ↗

A shared configuration for ORC tests.

Source from the content-addressed store, hash-verified

25 * A shared configuration for ORC tests.
26 */
27public interface TestConf {
28
29 Configuration conf = getNewConf();
30
31 /**
32 * Clear the configuration.
33 */
34 @BeforeEach
35 default void clear() {
36 conf.clear();
37 conf.setIfUnset("fs.defaultFS", "file:///");
38 conf.setIfUnset("fs.file.impl.disable.cache", "true");
39 }
40
41 private static Configuration getNewConf() {
42 Configuration conf = new Configuration();
43 conf.setIfUnset("fs.defaultFS", "file:///");
44 conf.setIfUnset("fs.file.impl.disable.cache", "true");
45 return conf;
46 }
47}

Callers 9

nextLineMethod · 0.65
TEST_PFunction · 0.65
TESTFunction · 0.65
mainFunction · 0.65
printContentsFunction · 0.65
TESTFunction · 0.65
TESTFunction · 0.65
TESTFunction · 0.65
TestConfInterface · 0.95

Implementers 15

TestRowCountjava/tools/src/test/org/apache/orc/too
TestJsonFileDumpjava/tools/src/test/org/apache/orc/too
TestMergeFilesjava/tools/src/test/org/apache/orc/too
TestScanDatajava/tools/src/test/org/apache/orc/too
TestFileDumpjava/tools/src/test/org/apache/orc/too
TestCheckTooljava/tools/src/test/org/apache/orc/too
TestColumnSizesjava/tools/src/test/org/apache/orc/too
TestConvertjava/tools/src/test/org/apache/orc/too
TestConvertORCjava/tools/src/test/org/apache/orc/too
TestRLEv2java/tools/src/test/org/apache/orc/imp
TestMinSeekSizejava/core/src/test/org/apache/orc/Test
TestOrcNoTimezonejava/core/src/test/org/apache/orc/Test

Calls 1

getNewConfMethod · 0.95

Tested by

no test coverage detected