Search Results

0
votes

What do you need to do Unit testing in Java with Eclipse?

fit (http://www.theserverside.com/news/thread.tss?thread_id=39417) dbunit ( …
2
votes

What does unit testing mean to you?

there is a traditional view of http://en.wikipedia.org/wiki/Software_testing as part of …
0
votes

Can unit tests have a execution time criteria?

maybe more of a performance test, but yes. nunit has them: http://weblogs.asp.net/egarmon/archive/2005/02/14/3 …
1
vote

Best practice Unit testing abstract classes?

one way is to write an abstract test case that corresponds to your abstract class, then write concrete test cases that subclass your abstract test case. do this for each concrete subclass of your o …
1
vote

Unit Testing Legacy ASP.NET Webforms Legacy Applications

i would suggest getting a copy of "Working Effectively with Legacy Code" (http://www.amazon.com/Working-Effectively-Lega …
0
votes

creating unit tests (semi-)automatically?

this might be what you are looking for: http://developer.spikesource.com/wiki/index.php/Projects:testgen4 …
1
vote

Recommended Unit Testing Book for an ASP.NET MVC environment

don't know of one specifically for that, but this is the bible: http://xunitpatterns.com/. not a book, but maybe helpful: …
0
votes

Should I change the naming convention for my unit tests?

i vote for calling the test case class: EmployeeReaderTestCase and calling the methods() like http://xunitpatterns.com/Organizati …
1
vote

External Data File for Unit Tests

take a look at: http://xunitpatterns.com/Data-Driven%20Test.html …
2
votes

[grails] how to create dummy data for unit test ?

as noted, you can use the test fixture. you can also put code in bootstrap (http://www.trans …
2
votes

An overview of unit testing terminology ( stub vs mock , integration vs. interaction )?

this is an excellent book: http://xunitpatterns.com/ see: …