X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fschemes%2FScoreMatrixPrinter.java;h=f0265c90ac5df5c514fe4ca12941614af72de2d5;hb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;hp=d058c244b7bcd3f790868af942299ebdf62c4e0b;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/test/jalview/schemes/ScoreMatrixPrinter.java b/test/jalview/schemes/ScoreMatrixPrinter.java index d058c24..f0265c9 100644 --- a/test/jalview/schemes/ScoreMatrixPrinter.java +++ b/test/jalview/schemes/ScoreMatrixPrinter.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) + * Copyright (C) 2015 The Jalview Authors * * This file is part of Jalview. * @@ -24,29 +24,31 @@ import jalview.api.analysis.ScoreModelI; import java.util.Map; -import org.junit.Test; +import org.testng.annotations.Test; - -public class ScoreMatrixPrinter +public class ScoreMatrixPrinter { - @Test + @Test(groups = { "Functional" }) public void printAllMatrices() { - for (Map.Entry sm: ResidueProperties.scoreMatrices.entrySet()) + for (Map.Entry sm : ResidueProperties.scoreMatrices + .entrySet()) { - System.out.println("Matrix "+sm.getKey()); + System.out.println("Matrix " + sm.getKey()); System.out.println(sm.getValue().toString()); } } - @Test + + @Test(groups = { "Functional" }) public void printHTMLMatrices() { - for (Map.Entry _sm: ResidueProperties.scoreMatrices.entrySet()) + for (Map.Entry _sm : ResidueProperties.scoreMatrices + .entrySet()) { if (_sm.getValue() instanceof ScoreMatrix) { ScoreMatrix sm = (ScoreMatrix) _sm.getValue(); - System.out.println("Matrix "+_sm.getKey()); + System.out.println("Matrix " + _sm.getKey()); System.out.println(sm.outputMatrix(true)); } }