public void testClone() throws StructuralException, CloneNotSupportedException {
NEFEnsembleFactory ef = new NEFEnsembleFactoryImpl();
NEFEnsemble ensemble = ef.make("test", 100, 1);
long startTime = System.currentTimeMillis();
ensemble.clone();
System.out.println(System.currentTimeMillis() - startTime);
}
public static void main(String[] args) {
NEFEnsembleImplTest test = new NEFEnsembleImplTest();