My team has a set of POJOs that we collect to go into our code and test various functions. For example, we have an Address class that contains address information.
It does not make sense to constantly rebuild this class every time we have to delete the address of an object in order to check something. I think something like Rails fixtures would be nice, but just having some kind of reasonable package and class in the test tree to store all of that would be nice.
Any ideas? Does JUnit have built-in tools to help with this?
source share