blob: 585a87e59283146fa252f7e405bccf8d1acb1304 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.internal.watson;
import junit.framework.TestCase;
/**
* Superclass for all tests involving the watson package.
*/
public abstract class WatsonTest extends TestCase {
/**
* Constructor for WatsonTest.
* @param name
*/
public WatsonTest(String name) {
super(name);
}
/*
* @see Assert#assert(boolean)
*/
/*
* @see Assert#assert(String, boolean)
*/
}