Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
c141aac
Added Randoop tests for two of the higher cyclomatic complexity class…
May 12, 2017
87c65df
Generated tests for the unit and the tile
May 12, 2017
955fc45
Removing the bin..
May 13, 2017
754a6ab
standard gitignore
rgott May 14, 2017
667f8d6
fixed untracked files (mainly .class files)
rgott May 14, 2017
9f9471a
generated Javadocs
manishjoshi12 May 15, 2017
7ded587
generated Javadocs for all of the classes
manishjoshi12 May 15, 2017
25dccaa
Deleting bin contents(since these can be built & are just going to re…
prodion23 May 15, 2017
283e7b2
Resolve merge conflicts
prodion23 May 15, 2017
042a189
Merge pull request #6 from donniepropst/donnie-tests
prodion23 May 15, 2017
cf6d7bc
Removing build class files
May 16, 2017
6d91c96
Git deleted the build dir
May 16, 2017
fd2962c
Readding dependencies
May 16, 2017
c1a328c
Merge pull request #7 from donniepropst/fixing-these-generated-files
prodion23 May 16, 2017
e28889e
Removed non-functional tests
rgott May 16, 2017
bc2adfa
More test cases
May 16, 2017
b34c939
Removed more unused classes and methods in freecol.client.control
rgott May 16, 2017
7d107ee
Deleted unused / non test files from freecol/common/i18n/*
rgott May 16, 2017
76eadae
Added Regression Test cases to ant builder
May 16, 2017
8dbe4e7
cleanup code removed unused code freecol/common
rgott May 16, 2017
a68b008
implemented ServerPlayerRegression Test Suite to ant build
May 16, 2017
fb7c8ac
Implemented ServerUnitRegression with Ant build
May 17, 2017
670150a
Implemented TileRegreseeion for Ant Build
May 17, 2017
1aa9b7f
Merge pull request #12 from donniepropst/AllTest
May 17, 2017
475edfc
More test cases
May 16, 2017
5f0cb84
Fixed memory leaks, reduced warnings #14
rgott May 20, 2017
c586b9b
Remove unused variables and classes #14
rgott May 20, 2017
1365e9d
Remove un-used files #14
rgott May 20, 2017
b1e9158
Added a cheat menu \n Added a Greed cheat which adds 10 gold to the p…
May 21, 2017
bdadd2b
Restricted the cheat menu to appear only when playing single player
May 21, 2017
1c1121f
Fixed greed naming issue
May 21, 2017
5c20c16
Removed FreeCol.jar inorder to merge, Should this be in gitignore?
May 21, 2017
ec9d96a
putting it back
May 21, 2017
9f986c9
Removing built jar files
May 21, 2017
d2403d3
removing for merge
May 21, 2017
eb6b839
Merge pull request #13 from donniepropst/more-tests
May 21, 2017
13c9e66
Created test case for constructing Greed Action. ActionPerformed is d…
May 21, 2017
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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
142 changes: 142 additions & 0 deletions .css/coverage.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
* {
margin: 0;
padding: 0;
}

body {
font-size: 90%;
background-color: #fff;
font-family: tahoma, verdana, arial, sans-serif;
color: #3f3f3f;
}

div.content {
padding: 0.2em 0.3em 0.2em 0.4em;
width: 99%;
}

h1 {
font:normal 18px tahoma, sans-serif;
margin: 0.5em 0 0.5em 0;
color: #010101;
}

h2 {
margin: 0.5em 0 0.5em 0;
font:bold 14px tahoma, sans-serif;
color: #010101;
}

table.coverageStats {
width: 99%;
border-collapse: collapse;
}

table.overallStats {
width: 20%;
}

table.coverageStats th {
font-weight: bold;
text-align: left;
}

table.coverageStats th.coverageStat {
width: 20%;
}

table.coverageStats th.sortedDesc a {
background: #fff url(../.img/arrowDown.gif) no-repeat 100% 0;
padding-right: 20px;
}

table.coverageStats th.sortedAsc a {
background: #fff url(../.img/arrowUp.gif) no-repeat 100% 0;
padding-right: 20px;
}

table.coverageStats td, table.coverageStats th {
border: 1px solid #ccc;
padding: 2px;
}

a {
color: #0254D0;
text-decoration: none;
}

a:hover {
text-decoration: underline;
color: #0254D0;
}

div.footer {
margin: 2em 2em 2em 0.5em;
font-size: 85%;
text-align: left;
line-height: 140%;
}

div.header {
padding: 0.5em;
background-color: #E3E9EF;
color: #3773C9;
font-weight: bold;
font-size: 120%;
text-align: center;
}

div.sourceCode {
width: 99%;
white-space: pre;
border: 1px solid #ccc;
font-family: monospace;
padding: 0;
}

i {
background-color: #eee;
}

div.sourceCode b {
font-weight: normal;
}

div.sourceCode i {
font-style: normal;
width: 3em;
padding: 0 3px 0 0;
display: block;
float: left;
text-align: right;
border-right: 1px solid #ccc;
/*margin-right: 3px;*/
}

div.sourceCode .fc, div.sourceCode .fc i {
background-color: #ccffcc;
}

div.sourceCode .pc, div.sourceCode .pc i {
background-color: #ffffcc;
}

div.sourceCode .nc, div.sourceCode .nc i {
background-color: #ffcccc;
}

.percent, .absValue {
font-size: 90%;
}

.percent .green, .absValue .green {
color: limegreen;
}

.percent .red, .absValue .red {
color: red;
}

.percent .totalDiff {
color: #3f3f3f;
}
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

.class
.idea/
FreeCol.iml
bin/
*.class


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

# Package Files #
#since we aren't using a dependency manager(maven/gradle we can't ignore all jars because of our dependencies) //*.jar
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
Binary file added .img/arrowDown.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .img/arrowUp.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed FreeCol.jar
Binary file not shown.
55,972 changes: 55,972 additions & 0 deletions TESTS-TestSuites.xml

Large diffs are not rendered by default.

Binary file removed bin/net/sf/freecol/FreeCol$1.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/FreeCol.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/ClientOptions.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/FreeColClient$1.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/FreeColClient.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/Worker.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/control/InputHandler.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13 changes: 0 additions & 13 deletions bin/net/sf/freecol/client/control/package.html

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/Canvas$ToolBoxFrame.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/Canvas.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/ChatDisplay.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/ChoiceItem.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/DialogHandler.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/FontLibrary.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/FreeColFrame$1.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/FreeColFrame.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/GUI.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/GUIMessage.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/GrayLayer.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/ImageLibrary.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/LoadingSavegameInfo.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/MapViewer.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/RoadPainter.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/ScrollThread.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/SwingGUI.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/TerrainCursor.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/TilePopup.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/TileViewer.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/action/CenterAction.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/action/MapboardAction.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/action/NewAction.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/action/QuitAction.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/action/WaitAction.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
24 changes: 0 additions & 24 deletions bin/net/sf/freecol/client/gui/action/package.html

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/menu/DebugMenu.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
8 changes: 0 additions & 8 deletions bin/net/sf/freecol/client/gui/menu/package.html

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/option/OptionUI.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 0 additions & 5 deletions bin/net/sf/freecol/client/gui/option/package.html

This file was deleted.

31 changes: 0 additions & 31 deletions bin/net/sf/freecol/client/gui/package.html

This file was deleted.

Binary file removed bin/net/sf/freecol/client/gui/panel/AboutPanel.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/panel/CargoPanel.class
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/panel/ChatPanel.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/panel/Draggable.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/panel/DropTarget.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/panel/EventPanel.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/net/sf/freecol/client/gui/panel/Flag.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading