X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fanalysis%2FAverageDistanceEngineTest.java;h=236e354a3d2efce168f4d78b8c113f3f27a16a27;hb=164fb77632cc3c9a3b5f5ac5290eadec920ffbc6;hp=f7688b54dfb6e339c43c0b4d0028e2e1a2fcac0f;hpb=4b7d3640209c4434d569c746672cf9eed4250ace;p=jalview.git diff --git a/test/jalview/analysis/AverageDistanceEngineTest.java b/test/jalview/analysis/AverageDistanceEngineTest.java index f7688b5..236e354 100644 --- a/test/jalview/analysis/AverageDistanceEngineTest.java +++ b/test/jalview/analysis/AverageDistanceEngineTest.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.analysis; import java.io.File; @@ -45,7 +65,7 @@ public class AverageDistanceEngineTest Cache.loadProperties("test/jalview/bin/TestProps.jvprops"); } - @Test + @Test(groups = { "Functional" }) public void testUPGMAEngine() throws Exception { AlignFrame af = new FileLoader(false).LoadFileWaitTillLoaded( @@ -67,7 +87,7 @@ public class AverageDistanceEngineTest + matrix.getMin()); long start = System.currentTimeMillis(); AverageDistanceEngine clusterer = new AverageDistanceEngine( - af.getViewport(), null, matrix); + af.getViewport(), null, matrix, false); System.out.println("built a tree in " + (System.currentTimeMillis() - start) * 0.001 + " seconds."); StringBuffer sb = new StringBuffer(); @@ -103,7 +123,6 @@ public class AverageDistanceEngineTest } System.out.println("\\"); } - } }