Project

General

Profile

Download (577 Bytes) Statistics
| Branch: | Tag: | Revision:
1 eab5d963 Andreas Müller
package eu.etaxonomy.cdm.api.service;
2
3
import static org.junit.Assert.assertNotNull;
4
5 b1b5ef56 Andreas Kohlbecker
import org.junit.Ignore;
6 eab5d963 Andreas Müller
import org.junit.Test;
7
8
/**
9
 * Dummy class. Original class has been moved to model.strategy.
10 b1b5ef56 Andreas Kohlbecker
 * This empty class needs to stay here to avoid test error with
11 eab5d963 Andreas Müller
 * transient terms.
12
 * Can be removed once this issue is fixed in the tests
13
 */
14
15 b1b5ef56 Andreas Kohlbecker
@Ignore
16 a13c5f66 Andreas Müller
public class IdentificationKeyGeneratorTTT {
17 b1b5ef56 Andreas Kohlbecker
18 eab5d963 Andreas Müller
//*************************** TESTS *********************** /
19 b1b5ef56 Andreas Kohlbecker
20 eab5d963 Andreas Müller
21
	@Test
22
	public void testInvoke() {
23
		assertNotNull("Key should exist.","");
24
	}
25
26
27
}