コード例 #1
0
ファイル: BioHelperTest.cs プロジェクト: kcha/seqcos
 public void QuerySupportedFileFiltersTest()
 {
     string all = "All files (*.*)|*.*";
     List<string> actual;
     actual = BioHelper.QuerySupportedFileFilters();
     Assert.IsTrue(actual.Any(s => s.Equals(all)));
 }
コード例 #2
0
ファイル: SeqcosMainWindow.xaml.cs プロジェクト: kcha/seqcos
        /// <summary>
        /// Creates an instance of the main window of the application
        /// </summary>
        public SeqcosMainWindow()
        {
            InitializeComponent();

            this.fileTypes = BioHelper.QuerySupportedFileFilters();
        }