Sunday, 14. December 2008
Hello World with PatternTesting 0.8.0
javatux, 17:59h

For the Hello-World-Example described in October you have to add now two jar files:
- patterntesting-check-0.8.0.jar
- patterntesting-rt-0.8.0.jar (for @SystemOutNeeded)
<dependency> <groupId>net.sf.patterntesting</groupId> <artifactId>patterntesting-check</artifactId> <version>0.8.0</version> </dependency>
Happy Patterntesting...
... link (0 Kommentare) ... comment
Monday, 13. October 2008
Hello World with PatternTesting
javatux, 22:25h

Now we are ready to create a simple Java project with a hello.World class inside:
package hello;
public class World {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}

Next we will integrate the PatternTesting library. Download it from the download page and call the project properties. Select the entry "AspectJ Build" and then the tab "Aspect Path". Add the patterntesting.0.6.0.jar you have downloaded and press ok.

You should see now the warning No logging should be done using System.out! in the problems view. I don't know any program which needs to use System.out for printing so this warning is normally ok. One exception from this rule is this Hello-World program so you can suppress it using the anntoation @SystemOutNeeded:
package hello;
import patterntesting.java.annotation.*;
public class World {
@SystemOutNeeded
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
happy patterntesting...
... link (0 Kommentare) ... comment
Monday, 6. October 2008
PatternTesting 0.6.0 released
javatux, 11:56h

What is still missing are some samples how to use PatternTesting. This will be a task for the next weeks.
Stay tuned...
... link (0 Kommentare) ... comment
Saturday, 27. September 2008
Trouble with Sourceforge
javatux, 00:58h

Also the patterntesting-devel mailing list is not alive at the moment. Sourceforge has moved to a new data center which was announced some days ago. I'm not the only one with this problem so I will wait...
Stay tuned...
... link (0 Kommentare) ... comment
Wednesday, 30. April 2008
PatternTesting 0.5.1 released
javatux, 00:38h

... link (0 Kommentare) ... comment
Sunday, 24. February 2008
Patterntesting on ibiblio.org
javatux, 22:30h

... link (0 Kommentare) ... comment
Tuesday, 29. January 2008
PatternTesting 0.5.0 released
javatux, 00:00h

This is my first release since I reanimated patterntesting (see PatternTesting Reloaded). One goal of this release was to become familiarized with the release process for Maven and Sourceforge.net. If you plan to do it for your project here 2 links which helps me: The changes report and other project reports you can find on the PatternTesting home page.
Happy (Pattern)Testing!
... link (0 Kommentare) ... comment
Thursday, 23. August 2007
PatternTesting Reloaded
javatux, 01:14h
PatternTesting is back! In the last months I changed the build process to Maven 2 (from Maven 1) and adapted the structure. Also the JUnit tests are reworked and the structure was adapted for Maven 2. There is still a lot of work left but a 'mvn site:deploy' is now possible.
... link (0 Kommentare) ... comment