• Utah Code Camp 2009

    I was a keynote speaker at the 2009 Utah Code Camp (http://utcodecamp.com/speakers/)
    I wanted to post my source code, and Slide Deck below.
    Source Code (http://baselogic.com/code/ucc2009/webapp.zip)
    Slide Deck PPT (http://baselogic.com/code/ucc2009/ucc.ppt)
    I will be converting this slide deck into a blog as soon as I have time to do so. Stay tuned….

  • Testing ActiveMQ VirtualTopic’s using Camel and JUnit

    I have started to create a server Process that sends a status update message that is consumed by remote clients via an activeMQ VirtualTopic.
    * note in the code examples, many comments and log statements have been removed for clarity here, but may bee seen in the log stack trace sections.
    What I want to be able [...]

  • How to convince developers and management to use JUnit testing

    I am currently on a project that provides configuration management support for >350 production application. Many are internal, but there are many dozens of them that are client facing.
    The Issues
    One project in particular, has been especially problematic for everyone involved. The project has 155 Java files that makes up the Enterprise Web Service, data processing [...]

  • Maven ignores unit test with JUnit and TestNG

    Today I was trying to use JUnit 4, and JUnit 3 in a Maven archetype I was creating. I had previously added TestNG dependencies to this project. I then added JUnit in addition to the TestNG.
    I run mvn test and no unit tests where run. Strange! I did not get any errors even using the [...]