X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fdatamodel%2Ffeatures%2FFeatureAttributesTest.java;fp=test%2Fjalview%2Fdatamodel%2Ffeatures%2FFeatureAttributesTest.java;h=a172a8a4b881f8d8b3961a66a913245d38fe4d71;hb=5e20c0116864d77705d951e35c41a13197791156;hp=0846ec26814e1a875f819773cadc9fb3e3924d27;hpb=1bad3c3f74b2e204e0d7ba93a745f5ec775c8a3e;p=jalview.git diff --git a/test/jalview/datamodel/features/FeatureAttributesTest.java b/test/jalview/datamodel/features/FeatureAttributesTest.java index 0846ec2..a172a8a 100644 --- a/test/jalview/datamodel/features/FeatureAttributesTest.java +++ b/test/jalview/datamodel/features/FeatureAttributesTest.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.datamodel.features; import static org.testng.Assert.assertEquals; @@ -44,7 +64,7 @@ public class FeatureAttributesTest * Test the method that keeps attribute names in non-case-sensitive order, * including handling of 'compound' names */ - @Test(groups="Functional") + @Test(groups = "Functional") public void testAttributeNameComparator() { FeatureAttributes fa = FeatureAttributes.getInstance(); @@ -52,19 +72,24 @@ public class FeatureAttributesTest "comparator"); assertEquals( - comp.compare(new String[] { "CSQ" }, new String[] { "csq" }), 0); + comp.compare(new String[] + { "CSQ" }, new String[] { "csq" }), 0); - assertTrue(comp.compare(new String[] { "CSQ", "a" }, - new String[] { "csq" }) > 0); + assertTrue( + comp.compare(new String[] + { "CSQ", "a" }, new String[] { "csq" }) > 0); - assertTrue(comp.compare(new String[] { "CSQ" }, new String[] { "csq", - "b" }) < 0); + assertTrue( + comp.compare(new String[] + { "CSQ" }, new String[] { "csq", "b" }) < 0); - assertTrue(comp.compare(new String[] { "CSQ", "AF" }, new String[] { - "csq", "ac" }) > 0); + assertTrue( + comp.compare(new String[] + { "CSQ", "AF" }, new String[] { "csq", "ac" }) > 0); - assertTrue(comp.compare(new String[] { "CSQ", "ac" }, new String[] { - "csq", "AF" }) < 0); + assertTrue( + comp.compare(new String[] + { "CSQ", "ac" }, new String[] { "csq", "AF" }) < 0); } @Test(groups = "Functional")