For "fun" I'm loosely porting a few Java classes to PHP (e.g. java.util.regex.Matcher), so I'd like to be able to run/port the unit tests for these:

  • java.lang.StringBuilder
  • java.util.regex.Pattern
  • java.util.regex.Matcher

Where can I find them? Tests from any semi-recent version would be helpful.

link|improve this question

80% accept rate
1  
I don't know whether these are the same as Oracle's JDK proper, but maybe OpenJDK has such tests? – fge Dec 13 '11 at 16:13
I wouldn't say "native Java classes", but rather "classes in the Java runtime library" – Ingo Kegel Dec 13 '11 at 16:31
feedback

1 Answer

up vote 5 down vote accepted

The OpenJDK project offers its source online. The test directory for e.g. StringBuilder can be found at http://hg.openjdk.java.net/jdk7u/jdk7u2/jdk/file/58ad18490a50/test/java/lang/StringBuilder/. Replace the version number with the version you are interested in, and adjust the path accordingly to find the tests for all other classes.

link|improve this answer
Wow, would've expected ... higher ... quality ... tests. Still, +1 – Johan Sjöberg Dec 13 '11 at 16:37
+1: StringBuilder is used in a few places and if it were broken it would show up somewhere else. You only need tests for functionality no other test covers. The code is basically the same as hg.openjdk.java.net/jdk7u/jdk7u2/jdk/file/58ad18490a50/test/… so you can use these tests too. – Peter Lawrey Dec 13 '11 at 16:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.