Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b41e530
JacksonCore
bobbyjameswilliams May 4, 2022
2a670e1
Exported Suites
bobbyjameswilliams May 5, 2022
c51790a
Generated random suites for Chart
bobbyjameswilliams May 5, 2022
12e8da8
results
bobbyjameswilliams May 5, 2022
aa62be2
Merge branch 'Collect_Results_Jackson_Core' of https://github.com/bob…
bobbyjameswilliams May 5, 2022
07e1ba0
Merge pull request #9 from bobbyjameswilliams/Collect_Results_Jackson…
bobbyjameswilliams May 9, 2022
86122e8
Generated suite data
bobbyjameswilliams May 9, 2022
05ec5c6
TODO for finishing
bobbyjameswilliams May 9, 2022
b419267
Continued work on CLI
bobbyjameswilliams May 10, 2022
f23aa77
CLI works!!!
bobbyjameswilliams May 11, 2022
3b6bfb1
Reconstructs to subject program option now
bobbyjameswilliams May 16, 2022
3ccc2ec
More test suites to assess.
bobbyjameswilliams May 25, 2022
f949d76
Adding new suites for final analysis
bobbyjameswilliams May 25, 2022
281161b
Exported math suite
bobbyjameswilliams May 26, 2022
c1b053e
CSV Data
bobbyjameswilliams May 27, 2022
72ab88a
Final suites generated
bobbyjameswilliams May 27, 2022
265abe2
Shorterned Suites.
bobbyjameswilliams May 27, 2022
08f0dc1
Final data added for evaluation
bobbyjameswilliams May 27, 2022
7bdd96e
Evaluated Math
islamelgendy May 27, 2022
b4b8e9c
Update gitignore
bobbyjameswilliams Dec 28, 2023
84d3c43
Editing gitignore
bobbyjameswilliams Dec 28, 2023
36471ed
Intellij Gitignore edit
bobbyjameswilliams Dec 28, 2023
bcebc2b
Merge branch 'feature' of https://github.com/bobbyjameswilliams/disse…
bobbyjameswilliams Dec 28, 2023
8c60bb9
More gitignores
bobbyjameswilliams Dec 28, 2023
696e275
Maven add
bobbyjameswilliams Dec 28, 2023
fe3ef70
Remove packages
bobbyjameswilliams Dec 28, 2023
f443736
Correct paths in tests after maven installation
bobbyjameswilliams Dec 28, 2023
edf875d
Added iml
bobbyjameswilliams Jan 16, 2024
f9c9990
Top menu added for evaluation
bobbyjameswilliams Jan 16, 2024
34c06e9
Added Docstrin
bobbyjameswilliams Jan 18, 2024
5fe134c
Added comment
bobbyjameswilliams Mar 15, 2024
bb3edf7
Removing redundant call
bobbyjameswilliams Mar 17, 2024
ce936c2
Commit null changes
bobbyjameswilliams Mar 24, 2024
07fc345
Merge branch 'feature' of https://github.com/bobbyjameswilliams/disse…
bobbyjameswilliams Mar 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*


/Results/
/test_suites/
26 changes: 26 additions & 0 deletions .gitignore.orig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

/TestSuiteArchives/
/test_suites/
/Results/
13 changes: 13 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions .idea/runConfigurations.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.apache.commons.cli;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses({ RegressionTest0.class, RegressionTest1.class, RegressionTest2.class, RegressionTest3.class })
public class RegressionTest {
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
project_id,version_id,test_suite_source,test_id,lines_total,lines_covered,branches_total,branches_covered
Cli,1b,randoop,10,45,43,14,9
Binary file not shown.
Loading