org.objenesis.tck.TCK Maven / Gradle / Ivy
/**
* Copyright 2006-2016 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.tck;
import org.objenesis.Objenesis;
import org.objenesis.strategy.PlatformDescription;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Technology Compatibility Kit (TCK) for {@link Objenesis}s.
*
* This TCK accepts a set of candidate classes (class it attempts to instantiate) and a set of
* Objenesis implementations. It then tries instantiating every candidate with every Objenesis
* implementations, reporting the results to a {@link Reporter}.
*
*
Example usage
*
*
* TCK tck = new TCK();
* // register candidate classes.
* tck.registerCandidate(SomeClass.class, "A basic class");
* tck.registerCandidate(SomeEvil.class, "Something evil");
* tck.registerCandidate(NotEvil.class, "Something nice");
* // register Objenesis instances.
* tck.registerObjenesisInstance(new ObjenesisStd(), "Objenesis");
* tck.registerObjenesisInstance(new ObjenesisSerializaer(), "Objenesis for serialization");
* // go!
* Reporter reporter = new TextReporter(System.out, System.err);
* tck.runTests(reporter);
*
*
* @author Joe Walnes
* @see org.objenesis.instantiator.ObjectInstantiator
* @see Reporter
* @see Main
*/
public class TCK {
private final List objenesisInstances = new ArrayList();
private final List> candidates = new ArrayList>();
private final Map