Skip to main content
summaryrefslogtreecommitdiffstats
blob: b19ccdca54d7e31c92cfa1b013833cfc764173ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.eclipse.wst.sse.core.tests;


import junit.framework.TestCase;

import org.eclipse.wst.sse.core.internal.SSECorePlugin;


public class ExistenceTest extends TestCase {

	public void testPluginExists(){
		assertNotNull(SSECorePlugin.getDefault());
	}
}

Back to the top