MCPcopy Index your code
hub / github.com/google/brotli / suite

Method suite

java/org/brotli/wrapper/dec/DecoderTest.java:32–44  ·  view source on GitHub ↗

Creates a test suite.

()

Source from the content-addressed store, hash-verified

30
31 /** Creates a test suite. */
32 public static TestSuite suite() throws IOException {
33 TestSuite suite = new TestSuite();
34 InputStream bundle = getBundle();
35 try {
36 List<String> entries = BundleHelper.listEntries(bundle);
37 for (String entry : entries) {
38 suite.addTest(new DecoderTestCase(entry));
39 }
40 } finally {
41 bundle.close();
42 }
43 return suite;
44 }
45
46 /** Test case with a unique name. */
47 static class DecoderTestCase extends TestCase {

Callers

nothing calls this directly

Calls 3

getBundleMethod · 0.95
listEntriesMethod · 0.95
closeMethod · 0.45

Tested by

no test coverage detected