X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fdatamodel%2FContactRangeTest.java;h=422255a28b32f05877068687f6af5f6c1d7f1eb8;hb=a0ccef9cc78fffa7be85f3b658a5768958a301ce;hp=a0242a7fb82d42f0cc068320764ba34b854e7f48;hpb=9f563b502a700d1c25c376e9504889049b71b0b8;p=jalview.git diff --git a/test/jalview/datamodel/ContactRangeTest.java b/test/jalview/datamodel/ContactRangeTest.java index a0242a7..422255a 100644 --- a/test/jalview/datamodel/ContactRangeTest.java +++ b/test/jalview/datamodel/ContactRangeTest.java @@ -1,21 +1,43 @@ +/* + * 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; import org.testng.Assert; import org.testng.annotations.Test; -public class ContactRangeTest { +public class ContactRangeTest +{ @Test public void testContactRangeBean() { ContactRange cr = new ContactRange(); - cr.update(5, 15, 6, 0.2, 12, 1.5); + cr.update(5, 15, 6, 0.2, 12, 1.5, 3.7); Assert.assertEquals(5, cr.getFrom_column()); Assert.assertEquals(15, cr.getTo_column()); Assert.assertEquals(6, cr.getMinPos()); Assert.assertEquals(0.2, cr.getMin()); Assert.assertEquals(12, cr.getMaxPos()); Assert.assertEquals(1.5, cr.getMax()); + Assert.assertEquals(3.7, cr.getMean()); cr.setFrom_column(6); Assert.assertEquals(6, cr.getFrom_column()); cr.setTo_column(16); @@ -28,5 +50,7 @@ public class ContactRangeTest { Assert.assertEquals(13, cr.getMaxPos()); cr.setMax(2.5); Assert.assertEquals(2.5, cr.getMax()); + cr.setMean(3.7); + Assert.assertEquals(3.7, cr.getMean()); } }