blob: 7ccdffcaacf8c13a8ae14f90fc35944cce9d7103 [file] [log] [blame]
/**
* Copyright 2006-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.objenesis.instantiator.basic;
import org.junit.Ignore;
import org.junit.Test;
import org.objenesis.EmptyClass;
import org.objenesis.instantiator.ObjectInstantiator;
import static org.junit.Assert.*;
/**
* @author Henri Tremblay
*/
@Ignore("Because it doesn't work without -Xverify:none")
public class ProxyingInstantiatorTest {
@Test
public void testNewInstance() throws Exception {
ObjectInstantiator<EmptyClass> inst = new ProxyingInstantiator<EmptyClass>(EmptyClass.class);
EmptyClass c = inst.newInstance();
assertEquals("EmptyClass$$$Objenesis", c.getClass().getSimpleName());
}
}