1 /**
2  * UGENE - Integrated Bioinformatics Tools.
3  * Copyright (C) 2008-2021 UniPro <ugene@unipro.ru>
4  * http://ugene.net
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301, USA.
20  */
21 
22 #ifndef _U2_C_INTERFACE_SAS_TESTS_H_
23 #define _U2_C_INTERFACE_SAS_TESTS_H_
24 
25 #include <unittest.h>
26 
27 #include <U2Core/U2OpStatus.h>
28 
29 namespace U2 {
30 
31 DECLARE_TEST(CInterfaceSasTests, align_with_clustalO_sas);
32 DECLARE_TEST(CInterfaceSasTests, align_with_clustalW_sas);
33 DECLARE_TEST(CInterfaceSasTests, align_with_kalign_sas);
34 DECLARE_TEST(CInterfaceSasTests, align_with_mafft_sas);
35 DECLARE_TEST(CInterfaceSasTests, align_with_muscle_sas);
36 DECLARE_TEST(CInterfaceSasTests, align_with_tcoffee_sas);
37 DECLARE_TEST(CInterfaceSasTests, annotate_with_uql_sas);
38 DECLARE_TEST(CInterfaceSasTests, basic_align_sas);
39 DECLARE_TEST(CInterfaceSasTests, build_weight_matrix_sas);
40 DECLARE_TEST(CInterfaceSasTests, cd_search_sas);
41 DECLARE_TEST(CInterfaceSasTests, dna_statistics_sas);
42 DECLARE_TEST(CInterfaceSasTests, faqual2fastq_sas);
43 DECLARE_TEST(CInterfaceSasTests, filter_annotations_by_name_sas);
44 DECLARE_TEST(CInterfaceSasTests, find_repeats_sas);
45 DECLARE_TEST(CInterfaceSasTests, hmm2_build_sas);
46 DECLARE_TEST(CInterfaceSasTests, import_phred_qualities_sas);
47 DECLARE_TEST(CInterfaceSasTests, join_sequences_into_alignment_sas);
48 DECLARE_TEST(CInterfaceSasTests, local_blast_plus_search_sas);
49 DECLARE_TEST(CInterfaceSasTests, merge_annotations_sas);
50 DECLARE_TEST(CInterfaceSasTests, merge_assemblies_with_cuffmerge_sas);
51 DECLARE_TEST(CInterfaceSasTests, orf_marker_sas);
52 DECLARE_TEST(CInterfaceSasTests, remote_blast_sas);
53 DECLARE_TEST(CInterfaceSasTests, reverse_complement_sas);
54 DECLARE_TEST(CInterfaceSasTests, split_alignment_into_sequences_sas);
55 DECLARE_TEST(CInterfaceSasTests, split_assembly_into_sequences_sas);
56 DECLARE_TEST(CInterfaceSasTests, text2sequence_sas);
57 DECLARE_TEST(CInterfaceSasTests, extract_consensus_sas);
58 
59 }  // namespace U2
60 
61 DECLARE_METATYPE(CInterfaceSasTests, align_with_clustalO_sas)
62 DECLARE_METATYPE(CInterfaceSasTests, align_with_clustalW_sas)
63 DECLARE_METATYPE(CInterfaceSasTests, align_with_kalign_sas)
64 DECLARE_METATYPE(CInterfaceSasTests, align_with_mafft_sas)
65 DECLARE_METATYPE(CInterfaceSasTests, align_with_muscle_sas)
66 DECLARE_METATYPE(CInterfaceSasTests, align_with_tcoffee_sas)
67 DECLARE_METATYPE(CInterfaceSasTests, annotate_with_uql_sas)
68 DECLARE_METATYPE(CInterfaceSasTests, basic_align_sas)
69 DECLARE_METATYPE(CInterfaceSasTests, build_weight_matrix_sas)
70 DECLARE_METATYPE(CInterfaceSasTests, cd_search_sas)
71 DECLARE_METATYPE(CInterfaceSasTests, dna_statistics_sas)
72 DECLARE_METATYPE(CInterfaceSasTests, faqual2fastq_sas)
73 DECLARE_METATYPE(CInterfaceSasTests, filter_annotations_by_name_sas)
74 DECLARE_METATYPE(CInterfaceSasTests, find_repeats_sas)
75 DECLARE_METATYPE(CInterfaceSasTests, hmm2_build_sas)
76 DECLARE_METATYPE(CInterfaceSasTests, import_phred_qualities_sas)
77 DECLARE_METATYPE(CInterfaceSasTests, join_sequences_into_alignment_sas)
78 DECLARE_METATYPE(CInterfaceSasTests, local_blast_plus_search_sas)
79 DECLARE_METATYPE(CInterfaceSasTests, merge_annotations_sas)
80 DECLARE_METATYPE(CInterfaceSasTests, merge_assemblies_with_cuffmerge_sas)
81 DECLARE_METATYPE(CInterfaceSasTests, orf_marker_sas)
82 DECLARE_METATYPE(CInterfaceSasTests, remote_blast_sas)
83 DECLARE_METATYPE(CInterfaceSasTests, reverse_complement_sas)
84 DECLARE_METATYPE(CInterfaceSasTests, split_alignment_into_sequences_sas)
85 DECLARE_METATYPE(CInterfaceSasTests, split_assembly_into_sequences_sas)
86 DECLARE_METATYPE(CInterfaceSasTests, text2sequence_sas)
87 DECLARE_METATYPE(CInterfaceSasTests, extract_consensus_sas)
88 
89 #endif  // _U2_C_INTERFACE_SAS_TESTS_H_
90