-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPITest.java
39 lines (33 loc) · 1.27 KB
/
APITest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
* Copyright (c) 2012 Ola Spjuth <[email protected]>
*
* 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
*
* Contact: Bioclipse Project <http://www.bioclipse.net>
******************************************************************************/
package net.bioclipse.chemspider.test;
import java.lang.Object;
import java.lang.Math;
import net.bioclipse.core.tests.AbstractManagerTest;
import net.bioclipse.managers.business.IBioclipseManager;
import net.bioclipse.chemspider.business.IChemspiderManager;
import net.bioclipse.chemspider.business.ChemspiderManager;
/**
* JUnit tests for checking if the tested Manager is properly tested.
*
* @author egonw
*/
public class APITest extends Main implements Jmol {
private static ChemspiderManager manager = new ChemspiderManager();
@Override
public IBioclipseManager getManager() {
return manager;
}
@Override
public Class<? extends IBioclipseManager> getManagerInterface() {
return IChemspiderManager.class;
}
}