X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FIdentifyFileTest.java;h=801d2054b498e651a8fe7403c5152212b7fd1681;hb=838e4f91d4a53dd315640dbc9ff6ef7a815ee576;hp=233358f7d65b9033fe8b1ae1d730f97e5674ada6;hpb=3f0b6b0db9b146f9d89bb40908546a2efaaf4fe9;p=jalview.git diff --git a/test/jalview/io/IdentifyFileTest.java b/test/jalview/io/IdentifyFileTest.java index 233358f..801d205 100644 --- a/test/jalview/io/IdentifyFileTest.java +++ b/test/jalview/io/IdentifyFileTest.java @@ -1,13 +1,33 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b1) + * Copyright (C) 2015 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.io; import org.testng.Assert; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; -public class IdentifyFileTest { +public class IdentifyFileTest +{ - @Test(groups = - { "Functional" }, dataProvider = "identifyFiles") + @Test(groups = { "Functional" }, dataProvider = "identifyFiles") public void Identify(String data, String expectedFileType) { String protocol = AppletFormatAdapter.FILE; @@ -20,8 +40,7 @@ public class IdentifyFileTest { @DataProvider(name = "identifyFiles") public Object[][] IdentifyFileDP() { - return new Object[][] - { + return new Object[][] { { "examples/example.json", "JSON" }, { "examples/plantfdx.fa", "FASTA" }, { "examples/dna_interleaved.phy", "PHYLIP" },