use of com.tvd12.calabash.core.prototype.Prototypes in project calabash by youngmonkeys.
the class PrototypesTest method test.
@Test
public void test() {
Prototypes prototypes = Prototypes.builder().addProxy(new ClassBProxy()).addProxy(new ClassAProxy()).build();
ClassA origin = new ClassA();
ClassA copy = prototypes.copy(origin);
assert copy != origin;
}
Aggregations