blob: 01d9f5af7922b7618483b10e635e4c8fe43ffba8 [file] [log] [blame]
/*
* Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Andre Dietisheim - initial API and implementation
* Eike Stepper - maintenance
*/
package org.eclipse.emf.cdo.tests.revisioncache;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author Andre Dietisheim
*/
public class AllTestsRevisionCache
{
public static Test suite()
{
TestSuite suite = new TestSuite("Tests for CDORevisionCache"); //$NON-NLS-1$
// $JUnit-BEGIN$
suite.addTestSuite(DefaultRevisionCacheTest.class);
// $JUnit-END$
return suite;
}
}