Subject: ignore some test classes
Description: some class tests do not have tests inside, but junit tries to execute them.
 Simple skip those classes with no real test to avoid errors during build.
Author: Olivier Sallou <osallou@debian.org>
Last-Updated: 2016-12-09
Forwarded: no
--- a/biojava-aa-prop/src/test/java/org/biojava/nbio/aaproperties/profeat/CookBookTest.java
+++ b/biojava-aa-prop/src/test/java/org/biojava/nbio/aaproperties/profeat/CookBookTest.java
@@ -25,7 +25,7 @@
 import org.biojava.nbio.aaproperties.profeat.IProfeatProperties.GROUPING;
 import org.biojava.nbio.aaproperties.profeat.IProfeatProperties.TRANSITION;
 import org.biojava.nbio.aaproperties.profeat.ProfeatProperties;
-//import org.junit.Test;
+import org.junit.Test;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -37,6 +37,9 @@
 
 	// TODO there's no assertions here, i.e. this is not a test! must fix! For the moment removed test tags - JD 2016-03-08
 
+@Test
+public void testFakeTest(){}
+
 	public void shortExample1() throws Exception{
 		/*
 		 * Composition
--- a/biojava-aa-prop/src/test/java/org/biojava/nbio/aaproperties/xml/GenerateJavaCodesFromTextTest.java
+++ b/biojava-aa-prop/src/test/java/org/biojava/nbio/aaproperties/xml/GenerateJavaCodesFromTextTest.java
@@ -20,7 +20,7 @@
  */
 package org.biojava.nbio.aaproperties.xml;
 
-//import org.junit.Test;
+import org.junit.Test;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -36,6 +36,9 @@
 
 	private final static Logger logger = LoggerFactory.getLogger(GenerateJavaCodesFromTextTest.class);
 
+@Test
+public void testFake(){}
+
 	/*
 	 * Generate java codes from two text files; Symbol2Name.txt and Symbol2Weight.txt
 	 */
