cleanup
[cdmlib.git] / cdmlib-model / src / test / java / eu / etaxonomy / cdm / validation / NameMustFollowCodeTest.java
index c105ea6dc1baa72d659878210a44991647c66238..04f7141278c44b5b4fa669ef652a0fe44cf75a92 100644 (file)
@@ -6,7 +6,6 @@
 * The contents of this file are subject to the Mozilla Public License Version 1.1
 * See LICENSE.TXT at the top of this package for the full license terms.
 */
-
 package eu.etaxonomy.cdm.validation;
 
 import static org.junit.Assert.assertFalse;
@@ -28,8 +27,6 @@ import eu.etaxonomy.cdm.model.name.TaxonNameFactory;
 import eu.etaxonomy.cdm.model.term.DefaultTermInitializer;
 import eu.etaxonomy.cdm.validation.constraint.NameMustFollowCodeValidator;
 
-
-
 /**
  * Test class for {@link NameMustFollowCodeValidator}
  *
@@ -57,7 +54,6 @@ public class NameMustFollowCodeTest extends ValidationTestBase {
            cultivarName = TaxonNameFactory.NewCultivarInstance(Rank.SPECIES());
        }
 
-
 /****************** TESTS *****************************/
 
     @Test
@@ -174,7 +170,6 @@ public class NameMustFollowCodeTest extends ValidationTestBase {
         assertFalse("There should be a constraint violation as a ViralName must not have hybrid child", constraintViolations.isEmpty());
 
         //TBC
-
     }
 
     @Test
@@ -195,5 +190,4 @@ public class NameMustFollowCodeTest extends ValidationTestBase {
         Set<ConstraintViolation<TaxonName>> constraintViolations  = validator.validate(bacterialName);
         assertTrue("There should be no constraint violation as a bacterial name may have subgenus authorship or name approbation set", constraintViolations.isEmpty());
     }
-
 }