Two Objects with same name under different packages?
Brought to you by:
ivan_r_moore,
mpcooke3
If there exists two objects with the same name but
under different name spaces. One object needs to be
fully qualifed to prevent naming collisions.
Currently mockmaker does not appear to handle this? It
generates two import statements rather than fully
qualifying the types when they are being used.
eg if there exists two objects called Name under
different package structures the following imports and
method declarations are created
import a.b.c.Name
import x.y.z Name
void createName(Name name)
This therefore causes conflicts. Is this a bug?