Skip to content

Commit 6d171cd

Browse files
committed
v4.0.7
1 parent dbddca8 commit 6d171cd

File tree

2 files changed

+24
-12
lines changed

2 files changed

+24
-12
lines changed

Properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#This file is automatically rewritten by ANT. Hand-edits may be lost.
2-
#Fri Sep 27 11:33:29 EDT 2013
2+
#Tue Jul 08 11:01:23 EDT 2014
33
version.minor=0
44
timeoutMultiplier=2
55
license.url="http\://www.gnu.org/licenses/agpl.html"
@@ -11,10 +11,10 @@ interpreter.prefix="${PerlForPlugins.perl.exe}"
1111
languages=( { name \= Java; version \= 1.4
1212
autoPublish=true
1313
version.major=4
14-
version.date=20130927
14+
version.date=20140708
1515
timeoutInternalPadding=400
1616
provider="Virginia Tech Computer Science"
1717
authorUid=edwards
1818
provider.url="http\://web-cat.cs.vt.edu/updates"
19-
version.revision=6
19+
version.revision=7
2020
name="JavaTddPlugin"

src/config.plist

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name = "JavaTddPlugin";
33
version.major = 4;
44
version.minor = 0;
5-
version.revision = 6;
6-
version.date = 20130927;
5+
version.revision = 7;
6+
version.date = 20140708;
77
autoPublish = true;
88
requires = ( ANTForPlugins, PerlForPlugins,
99
PMDForPlugins, CheckstyleForPlugins );
@@ -12,7 +12,7 @@
1212
license = "GNU Affero General Public License v.3";
1313
license.url = "http://www.gnu.org/licenses/agpl.html";
1414
copyright =
15-
"(c) 2006-2013 Virginia Tech Department of Computer Science";
15+
"(c) 2006-2014 Virginia Tech Department of Computer Science";
1616
info.url = "http://wiki.web-cat.org/WCWiki/JavaTddPlugin";
1717
history.url =
1818
"http://wiki.web-cat.org/WCWiki/JavaTddPlugin/ChangeHistory";
@@ -203,15 +203,28 @@
203203
a student's tests cover the corresponding code.";
204204
choices = ( { label = "Methods executed"; value = 0; },
205205
{ label = "Lines executed"; value = 1; },
206-
{ label = "Methods + decisions executed";
206+
{ label = "Methods + conditions executed";
207207
value = 2; },
208-
{ label = "Lines + decisions executed";
208+
{ label = "Lines + conditions executed";
209209
value = 3; },
210-
{ label = "Methods + lines + decisions executed";
210+
{ label = "Methods + lines + conditions executed";
211211
value = 4; }
212212
);
213213
},
214-
/*
214+
{
215+
property = includeTestSuitesInCoverage;
216+
type = boolean;
217+
default = false;
218+
name = "Include Student Test Code in Coverage Measures";
219+
category = "Basic Settings";
220+
description =
221+
"Normally, this plug-in excludes student-written tests from all coverage
222+
calculations, since the goal of the testing is to test the solution, not
223+
to execute more tests. When this option is set, student-written tests
224+
will be included in code coverage measures for the purposes of scoring,
225+
meaning that students will have to execute all of the code in their
226+
test classes.";
227+
},
215228
{
216229
property = requireSimpleExceptionCoverage;
217230
type = boolean;
@@ -241,6 +254,7 @@
241254
simple getters and setters are not counted in coverage measurements, and
242255
do not result in point deductions.";
243256
},
257+
/*
244258
{
245259
property = "clover.includes";
246260
type = shortText;
@@ -404,7 +418,6 @@
404418
documentation</a>). This plug-in uses PMD v5.0.5. If you owuld like to
405419
turn off all PMD checks entirely, use the \"Turn PMD Off\" options instead.";
406420
},
407-
/*
408421
{
409422
property = use.comtor;
410423
type = antBoolean;
@@ -414,7 +427,6 @@
414427
"Set to true to run the COMTOR Comment Analyzer and include the results
415428
as part of the overall feedback report.";
416429
},
417-
*/
418430
{
419431
property = staticAnalysisInclude;
420432
type = shortText;

0 commit comments

Comments
 (0)