My team has a set of POJO's that we build up to pass into our code and test various functions. For example we have an Address class which contains address information.
It doesn't make sense to constantly rebuild this class every time we have to whack an address onto an object to test something. I am thinking that something like Rails' fixtures would be good, but simply having some sane package and class in the test tree to store all these would be nice.
Any ideas? Does JUnit have any built in tools to help with this?