repo
stringlengths
1
191
file
stringlengths
23
351
code
stringlengths
0
5.32M
file_length
int64
0
5.32M
avg_line_length
float64
0
2.9k
max_line_length
int64
0
288k
extension_type
stringclasses
1 value
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator A tests/LineIteratorTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.fail; import java.io.Reader; import org.junit.jupiter.api.Test; public class LineIteratorTest { @Test public void testThreeLines() throws Exception { Scaffolding.doTestFileWithSpecifiedLines(3); } @Test public void testConstruc...
623
21.285714
72
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator A tests/Scaffolding.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.io.BufferedOutputStream; import java.io.ByteArrayInputStream; import java.io.CharArrayReader; import j...
21,306
24.702051
139
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/ByteOrderMarkTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.Arrays; import org.junit.ju...
3,871
48.641026
108
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/CharsetsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertThrows; import java.nio.charset.Charset; import java.nio.charset.UnsupportedCharsetException; import org.junit...
2,682
32.962025
92
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/EndianUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.io.ByteArrayInputStream; import java.uti...
4,583
40.672727
128
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/FileCleaningTrackerTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.io.File; import java.util.List; import org.junit.jupiter.api.Test; public class FileCleaningTracker...
5,184
48.380952
93
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/FileDeleteStrategyTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.io.File; import org.junit.jupiter.api.T...
8,348
51.18125
152
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/FileUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertio...
11,675
36.066667
110
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/FilenameUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions...
2,956
32.988506
298
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/HexDumpTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; import java.io.OutputStream; import org.junit.jupiter.api.Test; public class HexDumpTest { @Test public void testDump1() throws Throwable { byte[] byteArray = new by...
904
26.424242
133
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/IOUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNotSame; import static org.junit.jupiter.api.Assertions.assertSame; import static org.junit.jupiter.api.Assertio...
14,910
36.65404
122
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator B tests/Scaffolding.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.io.BufferedOutputStream; import java.io.Byt...
29,061
25.252936
139
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/ByteOrderMarkTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.Arrays; import org.junit.jupiter.api.Test; public class ByteOrderMarkTest { @Test ...
5,913
47.876033
102
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/CharsetsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import java.nio.charset.Charset; import org.junit.jupiter.api.Test; public class CharsetsTest { @Test public void testUtf8() { assertEquals("UTF-8", Charset...
1,639
29.943396
61
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/EndianUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertion...
5,393
40.492308
131
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/FileDeleteStrategyTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.io.File; import org.junit.jupiter.api.T...
5,676
47.939655
152
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/FileUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions...
7,657
33.809091
108
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/FilenameUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.ArrayList; import java.util.C...
9,181
48.101604
550
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/HexDumpTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.fail; import java.io.OutputStream; import java.util.Arrays; import org.junit.jupiter.api.Test; public class HexDump...
1,317
30.380952
129
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/IOUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNotSame; import static org.junit.jupiter.api.Asserti...
11,811
35.9125
161
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/LineIteratorTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.fail; import java.io.File; import org.junit.jupiter.api.Test; public class LineIteratorTest { @Test public void...
994
21.613636
96
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator C tests/Scaffolding.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.io.BufferedOutputStream; import java.io.Byt...
26,738
25.214706
139
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/ByteOrderMarkTest.java
package org.apache.commons.io; import static org.junit.Assert.assertEquals; import org.junit.jupiter.api.Test; public class ByteOrderMarkTest { @Test public void testByteOrderMark() { int[] intArray = new int[2]; ByteOrderMark byteOrderMark = new ByteOrderMark("o*?gVp+g$p\u0007", intArray); String string =...
423
23.941176
80
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/ByteOrderParserTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import java.nio.ByteOrder; import org.junit.jupiter.api.Test; public class ByteOrderParserTest { @Test public void testParseLittle() { assertEquals(ByteOrder.LITTLE_ENDIAN, Scaffolding.parseByteOrder("LITTLE_ENDIAN"));...
326
19.4375
85
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/CharsetsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertNotNull; import java.nio.charset.Charset; import org.junit.jupiter.api.Test; public class CharsetsTest { @Test public void testToCharset1() { Charset charset0 = Charsets.UTF_16LE; Charset charset1 = Charsets.toCharset(charse...
1,747
29.666667
61
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/EndianUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertion...
3,607
37.382979
129
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/FileCleaningTrackerTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions...
14,766
48.223333
143
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/FileDeleteStrategyTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.io.File; import org.junit.jupiter.api.T...
7,478
47.882353
152
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/FileUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions....
10,037
35.635036
113
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/FilenameUtilsTest.java
package org.apache.commons.io; import static org.junit.Assert.assertTrue; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertThrows; ...
7,495
54.117647
976
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/HexDumpTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.fail; import java.io.OutputStream; import java.util.Arrays; import org.junit.jupiter.api.Test; public class HexDump...
2,304
31.928571
130
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/IOUtilsTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNotSame; import static org.junit.jupiter.api.Assertions.assertSame; import static org.junit.jupiter.api.Assertio...
8,333
35.876106
107
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/LineIteratorTest.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.io.File; import java.util.NoSuchElementEx...
1,400
21.967213
93
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Annotator D tests/Scaffolding.java
package org.apache.commons.io; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; import java.io.BufferedOutputStream; import java.io.ByteArrayInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.i...
13,164
24.124046
139
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/ByteOrderMark_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 18:31:28 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import org.apache.commons.io.ByteOrderMark; import org.evosuite.runtime.EvoRunner; imp...
4,649
31.978723
161
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/ByteOrderMark_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 18:31:28 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
3,804
39.913978
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/ByteOrderParser_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 18:32:40 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.nio.ByteOrder; import org.apache.commons.io.ByteOrderParser; import org.ev...
1,553
32.06383
161
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/ByteOrderParser_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 18:32:40 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
3,816
40.043011
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/Charsets_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 18:36:04 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.nio.charset.Charset; import java.nio.charset.IllegalCharsetNameException; ...
1,858
29.47541
161
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/Charsets_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 18:36:04 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
3,774
39.591398
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/EndianUtils_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 18:38:23 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.io.BufferedOutputStream; import java.io.ByteArrayInputStream; import java....
7,176
34.35468
161
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/EndianUtils_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 18:38:24 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
3,792
39.784946
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/FileCleaningTracker_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 18:48:00 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.io.File; import java.util.List; import org.apache.commons.io.FileCleaningT...
7,155
43.447205
172
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/FileCleaningTracker_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 18:48:00 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
4,805
42.690909
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/FileDeleteStrategy_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 18:50:27 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.io.File; import java.io.IOException; import java.util.concurrent.ExecutorS...
7,304
51.553957
168
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/FileDeleteStrategy_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 18:50:28 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
5,503
42.68254
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/FileUtils_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 19:11:07 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.io.ByteArrayInputStream; import java.io.File; import java.io.FileFilter; i...
77,638
34.083145
190
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/FileUtils_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 19:11:07 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
8,031
45.427746
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/FilenameUtils_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 19:13:47 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.util.Collection; import java.util.LinkedList; import java.util.List; impor...
19,413
29.864865
186
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/FilenameUtils_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 19:13:48 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
3,880
39.852632
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/HexDump_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 19:15:37 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.io.BufferedOutputStream; import java.io.ByteArrayOutputStream; import java...
3,396
34.757895
197
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/HexDump_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 19:15:37 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
3,768
39.526882
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/IOUtils_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 19:20:05 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.shaded.org.mockito.Mockito.*; import static org.evosuite.runtime.EvoAssertions.*; import java.io.BufferedInputS...
47,684
35.709007
161
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/IOUtils_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 19:20:05 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
4,918
42.919643
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/LineIterator_ESTest.java
/* * This file was automatically generated by EvoSuite * Thu Jan 21 19:21:53 GMT 2021 */ package org.apache.commons.io; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.io.BufferedReader; import java.io.Reader; import java.io.StringReader; imp...
4,209
31.635659
161
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/EvoSuite tests/org/apache/commons/io/LineIterator_ESTest_scaffolding.java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Jan 21 19:21:53 GMT 2021 */ package org.apache.commons.io; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After...
4,107
40.494949
183
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderMark/RegressionTest.java
import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ RegressionTest0.class, RegressionTest1.class, RegressionTest2.class, RegressionTest3.class, RegressionTest4.class, RegressionTest5.class, RegressionTest6.class }) public class RegressionTest { }
306
33.111111
184
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderMark/RegressionTest0.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest0 { public static boolean debug = false; @Test public void test0001() throws Throwable { if (debug) System.out.forma...
1,019,137
69.397044
272
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderMark/RegressionTest1.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest1 { public static boolean debug = false; @Test public void test0501() throws Throwable { if (debug) System.out.forma...
1,321,891
74.853102
288
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderMark/RegressionTest2.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest2 { public static boolean debug = false; @Test public void test1001() throws Throwable { if (debug) System.out.forma...
1,475,150
77.075103
330
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderMark/RegressionTest3.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest3 { public static boolean debug = false; @Test public void test1501() throws Throwable { if (debug) System.out.forma...
1,438,741
77.491107
336
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderMark/RegressionTest4.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest4 { public static boolean debug = false; @Test public void test2001() throws Throwable { if (debug) System.out.forma...
1,488,814
78.458558
348
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderMark/RegressionTest5.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest5 { public static boolean debug = false; @Test public void test2501() throws Throwable { if (debug) System.out.forma...
1,568,235
79.720404
390
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderMark/RegressionTest6.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest6 { public static boolean debug = false; @Test public void test3001() throws Throwable { if (debug) System.out.forma...
769,229
79.725155
348
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderParser/RegressionTest.java
import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ RegressionTest0.class }) public class RegressionTest { }
168
17.777778
46
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/ByteOrderParser/RegressionTest0.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest0 { public static boolean debug = false; @Test public void test1() throws Throwable { if (debug) System.out.format("...
1,795
38.043478
187
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest.java
import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ RegressionTest0.class, RegressionTest1.class, RegressionTest2.class, RegressionTest3.class, RegressionTest4.class, RegressionTest5.class, RegressionTest6.class, RegressionTest7.class, RegressionTest8.class }) p...
352
38.222222
230
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest0.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest0 { public static boolean debug = false; @Test public void test0001() throws Throwable { if (debug) System.out.forma...
752,509
59.114236
132
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest1.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest1 { public static boolean debug = false; @Test public void test0501() throws Throwable { if (debug) System.out.forma...
910,734
61.102625
97
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest2.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest2 { public static boolean debug = false; @Test public void test1001() throws Throwable { if (debug) System.out.forma...
993,422
61.946585
97
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest3.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest3 { public static boolean debug = false; @Test public void test1501() throws Throwable { if (debug) System.out.forma...
1,031,731
62.315864
97
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest4.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest4 { public static boolean debug = false; @Test public void test2001() throws Throwable { if (debug) System.out.forma...
1,106,919
63.006014
97
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest5.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest5 { public static boolean debug = false; @Test public void test2501() throws Throwable { if (debug) System.out.forma...
1,110,354
63.078659
97
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest6.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest6 { public static boolean debug = false; @Test public void test3001() throws Throwable { if (debug) System.out.forma...
1,138,900
63.362871
97
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest7.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest7 { public static boolean debug = false; @Test public void test3501() throws Throwable { if (debug) System.out.forma...
1,156,400
63.55292
97
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/Charsets/RegressionTest8.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest8 { public static boolean debug = false; @Test public void test4001() throws Throwable { if (debug) System.out.forma...
651,233
63.651444
97
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest.java
import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ RegressionTest0.class, RegressionTest1.class, RegressionTest2.class, RegressionTest3.class, RegressionTest4.class, RegressionTest5.class, RegressionTest6.class, RegressionTest7.class, RegressionTest8.class, Reg...
471
51.444444
349
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest0.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest0 { public static boolean debug = false; @Test public void test0001() throws Throwable { if (debug) System.out.forma...
442,463
55.093306
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest1.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest1 { public static boolean debug = false; @Test public void test0501() throws Throwable { if (debug) System.out.forma...
554,689
60.075754
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest10.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest10 { public static boolean debug = false; @Test public void test5001() throws Throwable { if (debug) System.out.form...
679,285
63.743233
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest11.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest11 { public static boolean debug = false; @Test public void test5501() throws Throwable { if (debug) System.out.form...
643,677
62.964822
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest12.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest12 { public static boolean debug = false; @Test public void test6001() throws Throwable { if (debug) System.out.form...
660,943
63.375572
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest13.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest13 { public static boolean debug = false; @Test public void test6501() throws Throwable { if (debug) System.out.form...
337,188
64.346705
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest2.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest2 { public static boolean debug = false; @Test public void test1001() throws Throwable { if (debug) System.out.forma...
567,275
60.433398
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest3.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest3 { public static boolean debug = false; @Test public void test1501() throws Throwable { if (debug) System.out.forma...
588,363
60.985251
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest4.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest4 { public static boolean debug = false; @Test public void test2001() throws Throwable { if (debug) System.out.forma...
590,651
60.95867
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest5.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest5 { public static boolean debug = false; @Test public void test2501() throws Throwable { if (debug) System.out.forma...
606,484
61.718201
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest6.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest6 { public static boolean debug = false; @Test public void test3001() throws Throwable { if (debug) System.out.forma...
649,046
62.782134
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest7.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest7 { public static boolean debug = false; @Test public void test3501() throws Throwable { if (debug) System.out.forma...
648,717
62.762335
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest8.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest8 { public static boolean debug = false; @Test public void test4001() throws Throwable { if (debug) System.out.forma...
640,194
62.593424
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/EndianUtils/RegressionTest9.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest9 { public static boolean debug = false; @Test public void test4501() throws Throwable { if (debug) System.out.forma...
658,152
63.06629
182
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/FileCleaningTracker/RegressionTest.java
import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ RegressionTest0.class, RegressionTest1.class, RegressionTest2.class, RegressionTest3.class, RegressionTest4.class, RegressionTest5.class }) public class RegressionTest { }
283
30.555556
161
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/FileCleaningTracker/RegressionTest0.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest0 { public static boolean debug = false; @Test public void test0001() throws Throwable { if (debug) System.out.forma...
2,104,181
71.04869
169
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/FileCleaningTracker/RegressionTest1.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest1 { public static boolean debug = false; @Test public void test0501() throws Throwable { if (debug) System.out.forma...
2,574,206
72.362222
169
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/FileCleaningTracker/RegressionTest2.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest2 { public static boolean debug = false; @Test public void test1001() throws Throwable { if (debug) System.out.forma...
2,689,246
72.777043
169
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/FileCleaningTracker/RegressionTest3.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest3 { public static boolean debug = false; @Test public void test1501() throws Throwable { if (debug) System.out.forma...
2,683,461
72.778236
169
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/FileCleaningTracker/RegressionTest4.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest4 { public static boolean debug = false; @Test public void test2001() throws Throwable { if (debug) System.out.forma...
2,516,731
72.517717
169
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/FileCleaningTracker/RegressionTest5.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest5 { public static boolean debug = false; @Test public void test2501() throws Throwable { if (debug) System.out.forma...
2,069,520
72.509786
169
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/FileDeleteStrategy/RegressionTest.java
import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ RegressionTest0.class, RegressionTest1.class, RegressionTest2.class, RegressionTest3.class, RegressionTest4.class, RegressionTest5.class, RegressionTest6.class, RegressionTest7.class }) public class RegressionT...
329
35.666667
207
java
DScribe-Research
DScribe-Research-master/Section 7 - Comparison Study/Randoop tests/FileDeleteStrategy/RegressionTest0.java
import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest0 { public static boolean debug = false; @Test public void test0001() throws Throwable { if (debug) System.out.forma...
1,010,734
64.815915
178
java