almondtools / testrecorder

Create Test Fixtures from Runnable Java Code
http://testrecorder.amygdalum.net/
GNU Lesser General Public License v3.0
51 stars 5 forks source link

Usage of Classes with the same name cause compile errors in test code #1

Closed almondtools closed 8 years ago

almondtools commented 8 years ago

Serializing Objects which import classes of the same Name (such as java.util.Date and java.sql.Date) lead to two import statements

import java.util.Date;
import java.sql.Date;

which is not supported by Java. In this case the code must use the unique class name instead of the simple one (and imports must be excluded).

almondtools commented 8 years ago

fixed with release 0.1.4