Package org.trifort.rootbeer.test

Source Code of org.trifort.rootbeer.test.ChangeThread

/*
* Copyright 2012 Phil Pratt-Szeliga and other contributors
* http://chirrup.org/
*
* See the file LICENSE for copying permission.
*/

package org.trifort.rootbeer.test;

import java.util.ArrayList;
import java.util.List;

import org.trifort.rootbeer.testcases.rootbeertest.gpurequired.ChangeThreadTest;

public class ChangeThread implements TestSerializationFactory {

  public List<TestSerialization> getProviders() {
    List<TestSerialization> ret = new ArrayList<TestSerialization>();
    ret.add(new ChangeThreadTest());
    return ret;
  }

  public void makeHarder() {
    //ignore
  }

}
TOP

Related Classes of org.trifort.rootbeer.test.ChangeThread

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.