Archive for the tag "junit"
Testing java ee applications – the server side java symposium
March 17th, 2011 by Jeanne BoyarskyThis session was also fast moving and information filled, but it didn’t feel as overwhelming as the Spring session. The presenter included demos of some of the technologies. He did use the term “unit test” for things that test through the web and database. I would rather these be called integration/functional tests. I wish the [...]
Posted: 17 March, 2011 in Conferences.
Tags: Java/J2EE, JEE, junit, tssjs
Comments: 3
Test smells breakout at the server side java symposium
March 16th, 2011 by Jeanne BoyarskyWhile I’ve read about this topic a lot, I wanted to come to do the topic to see how Lasse Koskela presents. [I've learned so much from him over the years as a moderator at coderanch ] He speaks in the same voice that he writes – casual and easy to follow. I really liked [...]
Posted: 16 March, 2011 in Conferences.
Tags: junit, Patterns, testing, tssjs
Comments: -
junit suite wide setup (not @BeforeClass)
April 12th, 2010 by Jeanne BoyarskyProblem How do I run setup/teardown for my whole suite, not just one class/test? Impact of Problem JUnit offers @Before to run a method before each test and @BeforeClass to run a method once before a class. For a small suite, @BeforeClass may be enough. For a large integration test suite, setting up the database [...]
Posted: 12 April, 2010 in Java/J2EE, JavaRanch.
Tags: integration_test, junit, junit4
Comments: 1
