Directory groovy/groovy-core/src/test/

Directory Created:
2004-12-15 19:50
Total Files:
9
Deleted Files:
1
Lines of Code:
368

Browse with ViewVC

[root]/groovy/groovy-core/src/test

                    directory in repo gls (1 files, 23 lines)

                        directory in repo ch06 (0 files, 0 lines)

                            directory in repo s05 (2 files, 436 lines)

                                directory in repo testClasses (6 files, 300 lines)

                        directory in repo ch08 (0 files, 0 lines)

                            directory in repo s04 (2 files, 90 lines)

                        directory in repo invocaton (1 files, 31 lines)

                        directory in repo scope (6 files, 235 lines)

                        directory in repo staments (1 files, 24 lines)

                        directory in repo syntax (3 files, 49 lines)

                    directory in repo groovy (185 files, 11632 lines)

                        Folder removed from repo ant (0 files, 0 lines)

                        directory in repo benchmarks (3 files, 62 lines)

                        directory in repo bugs (121 files, 4147 lines)

                            Folder removed from repo priv (0 files, 0 lines)

                        Folder removed from repo gdo (0 files, 0 lines)

                        directory in repo gpath (2 files, 67 lines)

                        Folder removed from repo gravy (0 files, 0 lines)

                        directory in repo inspect (1 files, 247 lines)

                        directory in repo j2ee (2 files, 135 lines)

                        Folder removed from repo jmx (0 files, 0 lines)

                        directory in repo lang (20 files, 1869 lines)

                        directory in repo mock (1 files, 95 lines)

                            directory in repo example (3 files, 45 lines)

                            directory in repo interceptor (5 files, 509 lines)

                        directory in repo model (1 files, 37 lines)

                        Folder removed from repo notworking (0 files, 0 lines)

                        directory in repo script (14 files, 193 lines)

                        directory in repo security (6 files, 537 lines)

                        directory in repo servlet (1 files, 50 lines)

                        directory in repo sql (10 files, 564 lines)

                        directory in repo swing (1 files, 536 lines)

                        directory in repo text (3 files, 157 lines)

                        directory in repo time (1 files, 53 lines)

                        directory in repo tree (7 files, 359 lines)

                        directory in repo txn (3 files, 81 lines)

                        directory in repo ui (1 files, 38 lines)

                        directory in repo util (21 files, 1347 lines)

                            directory in repo suite (1 files, 2 lines)

                        directory in repo xml (18 files, 1182 lines)

                            directory in repo dom (2 files, 52 lines)

                    directory in repo org (0 files, 0 lines)

                        directory in repo codehaus (0 files, 0 lines)

                            directory in repo groovy (0 files, 0 lines)

                                directory in repo ant (5 files, 148 lines)

                                    directory in repo groovytest3 (1 files, 9 lines)

                                directory in repo antlr (3 files, 249 lines)

                                    directory in repo treewalker (8 files, 1547 lines)

                                directory in repo ast (2 files, 156 lines)

                                directory in repo bsf (2 files, 348 lines)

                                directory in repo classgen (30 files, 2538 lines)

                                directory in repo control (1 files, 43 lines)

                                    directory in repo io (2 files, 27 lines)

                                    directory in repo messages (1 files, 41 lines)

                                directory in repo dummy (2 files, 20 lines)

                                Folder removed from repo interpreter (0 files, 0 lines)

                                Folder removed from repo lang (0 files, 0 lines)

                                directory in repo runtime (21 files, 2411 lines)

                                    directory in repo metaclass (1 files, 10 lines)

                                directory in repo syntax (1 files, 752 lines)

                                    Folder removed from repo lexer (0 files, 0 lines)

                                    directory in repo parser (1 files, 56 lines)

                                directory in repo tools (4 files, 334 lines)

                                    directory in repo groovydoc (2 files, 99 lines)

                                    directory in repo xml (5 files, 221 lines)

                                Folder removed from repo wiki (0 files, 0 lines)

Lines of Code

groovy/groovy-core/src/test/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 196 (100.0%) 1142 (100.0%) 5.8
jez 25 (12.8%) 580 (50.8%) 23.2
dierk 41 (20.9%) 285 (25.0%) 6.9
jstrachan 23 (11.7%) 69 (6.0%) 3.0
paulk 17 (8.7%) 66 (5.8%) 3.8
phk 34 (17.3%) 39 (3.4%) 1.1
cstein 4 (2.0%) 30 (2.6%) 7.5
blackdrag 19 (9.7%) 19 (1.7%) 1.0
russel 8 (4.1%) 16 (1.4%) 2.0
glaforge 9 (4.6%) 13 (1.1%) 1.4
mcspanky 4 (2.0%) 8 (0.7%) 2.0
tug 5 (2.6%) 6 (0.5%) 1.2
fraz 1 (0.5%) 6 (0.5%) 6.0
hmeling 1 (0.5%) 2 (0.2%) 2.0
sstirling 1 (0.5%) 1 (0.1%) 1.0
popescu 1 (0.5%) 1 (0.1%) 1.0
mguillem 3 (1.5%) 1 (0.1%) 0.3

Most Recent Commits

paulk 2007-04-04 06:37

reformat test code

32 lines of code changed in:

jez 2007-03-30 23:21

Added initial implementation of Groovydoc



Java and Groovy files are read into a tree of value objects from GroovyDoclet API ( org.codehaus.groovy.groovydoc.* )

This tree is then used to generate root, package and class level template renderings

using the GStringTemplateEngine.



The default templates are included within the base groovy jar, so groovydoc can be used 'fresh out of the box'



use from ant:

<taskdef name="groovydoc" classname="org.codehaus.groovy.ant.Groovydoc">

<groovydoc sourcepath="${src.dir}"

destdir="${groovydoc.dir}"

packagenames="${groovydoc.packages}"

use="true"

windowtitle="groovydoc"

private="true"/>





I hope people will enjoy these classes, and I invite you to come and put some flesh onto this skeleton implementation.



Limitations:

- class html files only lists method summaries so far

- comments are not treated properly yet

- groovydoc ant task has only very basic parameters so far



Cheers



Jez.



2 lines of code changed in:

paulk 2007-03-11 06:35

add initial NodePrinterTest

1 lines of code changed in:

paulk 2007-03-11 02:02

add initial CompositeVisitorTest

1 lines of code changed in:

paulk 2007-03-11 01:17

add MindMapPrinterTest plus remove some duplication

1 lines of code changed in:

paulk 2007-03-10 13:06

add new test to suite

1 lines of code changed in:

paulk 2007-03-07 02:24

BUILD: added compiling src/examples to CI build, moved a few files into src/examples

0 lines of code changed in:

paulk 2007-02-23 01:00

Minor refactoring to make tests work better across environments, e.g. SerializeTest uses SystemClassLoader, rename BinaryStreamsTest to include it in test suite

1 lines of code changed in:

popescu 2007-02-19 06:03

Enum parser tests + fixes to the grammar

1 lines of code changed in:

mguillem 2007-02-01 17:21

GROOVY-1690

Add package declaration corresponding to the folder for (most of) unit tests where it was missing.

1 lines of code changed in:

jez 2007-01-15 21:33

* Added comments to some of the SourcePrinterTests

o '// not in java' - those bits of syntax which are uniquely groovy

o '// fails after parser' - those bits of syntax which parse in antlr but fail somewhere onwards, these are copied to UnimplementedSyntaxTest.java



* Added UnimplementedSyntaxTest.java which has assertions on the failure of a number of language

features in the parser but vocal in their failure below the parser (i.e. error messages)

[ silent ignoring of syntax features are not included, e.g. the current usage of annotations in bytecode ]



* Added SPREAD_DOT (*.) operator to pretty printer, whoops missed this one in 1.0



Cheers



Jez

2 lines of code changed in:

paulk 2006-12-16 13:57

migrate DomToGroovy test from java to groovy

0 lines of code changed in:

paulk 2006-11-29 08:55

fix for GROOVY-1471: extra error message if class is both Final and Abstract (plus test)

27 lines of code changed in:

paulk 2006-10-23 12:38

GROOVY-1535: added more XML tests including FactorySupport test

2 lines of code changed in:

blackdrag 2006-10-10 19:06

testcase changes (mostly because of the addition of iterator() and the reduced functionality of Invoker) to the commit earlier today

4 lines of code changed in:

mguillem 2006-08-30 08:18

fixed most of the warnings reported by Eclipse (javadoc, unused imports, ...)

0 lines of code changed in:

glaforge 2006-08-01 10:43

GROOVY-1353: UTC3 seems to have been missing some tests

1 lines of code changed in:

blackdrag 2006-06-06 15:33

this patch contains some minor changes as a result of a findbugs analyses and the second part of the GCL changes. The inner classes in CompilationUnit are renamed, GCL does cache sources again and some documentation is added

0 lines of code changed in:

dierk 2006-02-13 15:29

made AllTestSuite work with ant file globs, again. adapted and added Tests for the filname pick up

4 lines of code changed in:

dierk 2006-02-12 20:09

avoid doubled collection of tests in the suites. small brush-up

80 lines of code changed in:

(125 more)

Generated by StatSVN 0.3.2-SNAPSHOT