Home
last modified time | relevance | path

Searched refs:testDir (Results 1 – 25 of 2572) sorted by relevance

12345678910>>...103

/dports/www/mediawiki137/mediawiki-1.37.1/tests/common/
H A DTestsAutoLoader.php25 $testDir = __DIR__ . "/.."; variable
31 'TestSetup' => "$testDir/common/TestSetup.php",
40 'DbTestPreviewer' => "$testDir/parser/DbTestPreviewer.php",
41 'DbTestRecorder' => "$testDir/parser/DbTestRecorder.php",
42 'DjVuSupport' => "$testDir/parser/DjVuSupport.php",
51 'TestFileEditor' => "$testDir/parser/TestFileEditor.php",
52 'TestFileReader' => "$testDir/parser/TestFileReader.php",
53 'TestRecorder' => "$testDir/parser/TestRecorder.php",
75 'TestUser' => "$testDir/phpunit/includes/TestUser.php",
80 'TestLogger' => "$testDir/phpunit/mocks/TestLogger.php",
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/tests/common/
H A DTestsAutoLoader.php25 $testDir = __DIR__ . "/.."; variable
31 'TestSetup' => "$testDir/common/TestSetup.php",
40 'DbTestPreviewer' => "$testDir/parser/DbTestPreviewer.php",
41 'DbTestRecorder' => "$testDir/parser/DbTestRecorder.php",
42 'DjVuSupport' => "$testDir/parser/DjVuSupport.php",
45 'ParserTestRunner' => "$testDir/parser/ParserTestRunner.php",
51 'TestFileEditor' => "$testDir/parser/TestFileEditor.php",
52 'TestFileReader' => "$testDir/parser/TestFileReader.php",
53 'TestRecorder' => "$testDir/parser/TestRecorder.php",
76 'TestUser' => "$testDir/phpunit/includes/TestUser.php",
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/tests/common/
H A DTestsAutoLoader.php25 $testDir = __DIR__ . "/.."; variable
31 'TestSetup' => "$testDir/common/TestSetup.php",
37 'DbTestPreviewer' => "$testDir/parser/DbTestPreviewer.php",
38 'DbTestRecorder' => "$testDir/parser/DbTestRecorder.php",
39 'DjVuSupport' => "$testDir/parser/DjVuSupport.php",
42 'ParserTestRunner' => "$testDir/parser/ParserTestRunner.php",
48 'TestFileEditor' => "$testDir/parser/TestFileEditor.php",
49 'TestFileReader' => "$testDir/parser/TestFileReader.php",
50 'TestRecorder' => "$testDir/parser/TestRecorder.php",
75 'TestUser' => "$testDir/phpunit/includes/TestUser.php",
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/tests/DirectoryInfo/
H A DGetSetTimes.cs22 ((testDir, time) => {testDir.CreationTime = time; }), in TimeFunctions()
23 ((testDir) => testDir.CreationTime), in TimeFunctions()
27 ((testDir) => testDir.CreationTimeUtc), in TimeFunctions()
31 ((testDir) => testDir.CreationTimeUtc), in TimeFunctions()
35 ((testDir, time) => {testDir.LastAccessTime = time; }), in TimeFunctions()
36 ((testDir) => testDir.LastAccessTime), in TimeFunctions()
40 ((testDir) => testDir.LastAccessTimeUtc), in TimeFunctions()
44 ((testDir) => testDir.LastAccessTimeUtc), in TimeFunctions()
48 ((testDir) => testDir.LastWriteTime), in TimeFunctions()
52 ((testDir) => testDir.LastWriteTimeUtc), in TimeFunctions()
[all …]
H A DRefresh.cs16 DirectoryInfo testDir = Directory.CreateDirectory(GetTestFilePath()); in DeleteThenRefresh()
17 testDir.Delete(); in DeleteThenRefresh()
18 testDir.Refresh(); in DeleteThenRefresh()
19 Assert.False(testDir.Exists); in DeleteThenRefresh()
28 DirectoryInfo testDir = Directory.CreateDirectory(source); in NameChange()
29 testDir.MoveTo(dest); in NameChange()
30 testDir.Refresh(); in NameChange()
39 testDir.Attributes = FileAttributes.ReadOnly; in AttributeChange()
40 testDir.Refresh(); in AttributeChange()
42 testDir.Attributes = new FileAttributes(); in AttributeChange()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/tests/Directory/
H A DGetFileSystemEntries_str_str.cs53 testDir.CreateSubdirectory("TestDir1"); in SearchPatternDotIsStar()
54 testDir.CreateSubdirectory("TestDir2"); in SearchPatternDotIsStar()
76 testDir.CreateSubdirectory("TestDir1"); in SearchPatternWithTrailingStar()
77 testDir.CreateSubdirectory("TestDir2"); in SearchPatternWithTrailingStar()
78 testDir.CreateSubdirectory("TestDir3"); in SearchPatternWithTrailingStar()
112 testDir.CreateSubdirectory("TestDir1"); in SearchPatternWithLeadingStar()
113 testDir.CreateSubdirectory("TestDir2"); in SearchPatternWithLeadingStar()
114 testDir.CreateSubdirectory("TestDir3"); in SearchPatternWithLeadingStar()
718 return testDir; in PrepareDirectory()
997 … Assert.Contains(Path.Combine(testDir.FullName, valid), GetEntries(testDir.FullName, valid)); in UnixSearchPatternFileValidChar()
[all …]
H A DDelete.cs44 Assert.True(testDir.Exists); in ShouldThrowIOExceptionIfContainedFileInUse()
53 Assert.True(testDir.Exists); in ShouldThrowIOExceptionForDirectoryWithFiles()
62 Assert.True(testDir.Exists); in DirectoryWithSubdirectories()
76 Delete(testDir.FullName); in PositiveTest()
77 Assert.False(testDir.Exists); in PositiveTest()
127 Assert.True(testDir.Exists); in ExtendedDirectoryWithSubdirectories()
134 Delete(testDir.FullName); in LongPathExtendedDirectory()
149 Assert.True(testDir.Exists); in WindowsDeleteReadOnlyDirectory()
170 Delete(testDir.FullName); in UnixDeleteReadOnlyDirectory()
180 Delete(testDir.FullName); in WindowsShouldBeAbleToDeleteHiddenDirectory()
[all …]
H A DMove.cs48 Assert.Throws<IOException>(() => Move(testDir.FullName, testDir.FullName)); in MoveOntoSameDirectory()
128 … Assert.Throws<IOException>(() => Move(testDir.FullName, Path.Combine(testDir.FullName, "."))); in MoveIntoCurrentDirectory()
135 … Assert.Throws<IOException>(() => Move(testDir.FullName, Path.Combine(testDir.FullName, ".."))); in MoveOntoParentDirectory()
152 string testDir = GetTestFilePath(); in MultipleMoves()
206 string testDir = GetTestFilePath(); in Path_Longer_Than_MaxLongPath_Throws_Exception()
235 Move(testDir, path); in Path_With_Longer_Than_MaxDirectory_Succeeds()
238 Move(path, testDir); in Path_With_Longer_Than_MaxDirectory_Succeeds()
302 Move(Path.Combine(testDir.FullName, " "), Path.Combine(testDir.FullName, "\n")); in UnixWhitespacePath()
303 Move(Path.Combine(testDir.FullName, "\n"), Path.Combine(testDir.FullName, "\t")); in UnixWhitespacePath()
304 Move(Path.Combine(testDir.FullName, "\t"), Path.Combine(testDir.FullName, ">")); in UnixWhitespacePath()
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/cli-runtime/pkg/resource/
H A Dvisitor_test.go206 testDir := t.TempDir()
210 filepath.Join(testDir, "02.yaml"),
212 filepath.Join(testDir, "2.yaml"),
216 filepath.Join(testDir, "a.yaml"),
218 filepath.Join(testDir, "b.yml"),
244 path: testDir,
263 path: testDir,
277 path: testDir,
294 path: testDir,
304 path: testDir,
[all …]
/dports/math/cgl/Cgl-releases-0.60.3/Cgl/test/
H A DunitTest.cpp65 std::string testDir; in main() local
75 testDir = TESTDIR "/" ; in main()
77 testDir = "CglTestData/"; in main()
86 testDir = TESTDIR "\\"; in main()
88 testDir = "CglTestData\\"; in main()
96 testDir = argv[2]; in main()
97 testDir += dirsep; in main()
151 CglTwomirUnitTest(&cpxSi, testDir); in main()
156 CglCliqueUnitTest(&cpxSi, testDir); in main()
212 CglTwomirUnitTest(&xprSi, testDir); in main()
[all …]
/dports/sysutils/helm/helm-3.5.2/vendor/sigs.k8s.io/kustomize/pkg/fs/
H A Drealfs_test.go38 if !x.Exists(testDir) {
41 if !x.IsDir(testDir) {
44 return x, testDir
48 x, testDir := makeTestDir(t)
49 defer os.RemoveAll(testDir)
68 x, testDir := makeTestDir(t)
69 defer os.RemoveAll(testDir)
84 x, testDir := makeTestDir(t)
85 defer os.RemoveAll(testDir)
97 if d.String() != testDir {
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/sigs.k8s.io/kustomize/pkg/fs/
H A Drealfs_test.go38 if !x.Exists(testDir) {
41 if !x.IsDir(testDir) {
44 return x, testDir
48 x, testDir := makeTestDir(t)
49 defer os.RemoveAll(testDir)
68 x, testDir := makeTestDir(t)
69 defer os.RemoveAll(testDir)
84 x, testDir := makeTestDir(t)
85 defer os.RemoveAll(testDir)
97 if d.String() != testDir {
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/radovskyb/watcher/watcher-1.0.6/
H A Dwatcher_test.go57 os.RemoveAll(testDir)
170 if w.files[testDir].Name() != filepath.Base(testDir) {
172 testDir, testDir, w.files[testDir].Name())
217 err := w.Add(testDir)
225 err = w.Ignore(testDir)
234 err = w.Add(testDir)
249 err := w.Add(testDir)
299 if w.files[testDir].Name() != filepath.Base(testDir) {
301 testDir, filepath.Base(testDir), w.files[testDir].Name())
363 if w.files[testDir].Name() != filepath.Base(testDir) {
[all …]
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/tools/walkers/variantutils/
H A DUpdateVCFSequenceDictionaryIntegrationTest.java29 …new Object[]{ new File(testDir, "variantsNoDict.vcf"), new File(testDir, "variantsWithDict.vcf"), … in updateGoodSequenceDictionaryData()
31 …new Object[]{ new File(testDir, "variantsNoDict.vcf"), null, new File(testDir, "exampleFASTA.fasta… in updateGoodSequenceDictionaryData()
34 …new Object[]{ new File(testDir, "variantsNoDict.vcf"), new File(testDir, "exampleFASTA.fasta"), nu… in updateGoodSequenceDictionaryData()
35 …new Object[]{ new File(testDir, "variantsNoDict.vcf"), new File(testDir, "exampleFASTA.dict"), nul… in updateGoodSequenceDictionaryData()
37 …new Object[]{ new File(testDir, "variantsNoDict.vcf"), new File(testDir, "exampleBAM.bam"), null, … in updateGoodSequenceDictionaryData()
39 …new Object[]{ new File(testDir, "variantsWithSubsetDict.vcf"), new File(testDir, "exampleFASTA.dic… in updateGoodSequenceDictionaryData()
79 …new Object[]{ new File(testDir, "variantsWithDict.vcf"), new File(testDir, "variantsWithDict.vcf")… in updateBadSequenceDictionaryData()
81 …new Object[]{ new File(testDir, "variantsNoDict.vcf"), new File(testDir, "variantsNoDict.vcf"), nu… in updateBadSequenceDictionaryData()
102 new File(testDir, "variantsNoDict.vcf"), in testUseMasterDictionary()
135 new File(testDir, "variantsNoDict.vcf"), in testMasterDictionaryAmbiguous()
[all …]
/dports/www/falkon/falkon-3.2.0/autotests/
H A Dqztoolstest.cpp297 createTestDirectoryStructure(testDir); in copyRecursivelyTest()
302 QCOMPARE(QzTools::copyRecursively(testDir, testDir + "-copy"), true); in copyRecursivelyTest()
320 QCOMPARE(QzTools::copyRecursively(testDir, testDir + "-copy"), false); in copyRecursivelyTest()
330 createTestDirectoryStructure(testDir); in removeRecursivelyTest()
332 QCOMPARE(QzTools::copyRecursively(testDir, testDir + "-copy"), true); in removeRecursivelyTest()
339 QCOMPARE(QzTools::copyRecursively(testDir, testDir + "-copy2"), true); in removeRecursivelyTest()
341 QFile dir(testDir + "-copy2"); in removeRecursivelyTest()
359 QDir().mkpath(testDir + "/subdir"); in dontFollowSymlinksTest()
360 QFile::link(testDir, testDir + "/subdir/link"); in dontFollowSymlinksTest()
365 QVERIFY(QFile::exists(testDir)); in dontFollowSymlinksTest()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/nio/file/Files/
H A DMismatch.java58 Path testDir; field in Mismatch
62 testDir = Files.createTempDirectory("testMismatch"); in setup()
68 Files.walk(testDir).map(Path::toFile).forEach(File::delete); in cleanup()
69 Files.deleteIfExists(testDir); in cleanup()
94 Path test0a = createASCIIFile(testDir, "test0a", 0, -1, ' '); in getDataForMismatch()
95 Path test0b = createASCIIFile(testDir, "test0b", 0, -1, ' '); in getDataForMismatch()
104 Path test147a = createASCIIFile(testDir, "test147a", size, -1, ' '); in getDataForMismatch()
105 Path test147b = createASCIIFile(testDir, "test147b", size, -1, ' '); in getDataForMismatch()
106 Path test147m0 = createASCIIFile(testDir, "test147m0", size, 0, '!'); in getDataForMismatch()
260 Path test = createASCIIFile(testDir, "testNonNull", 2200, -1, ' '); in getDataForNull()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/nio/file/Files/
H A DMismatch.java58 Path testDir; field in Mismatch
62 testDir = Files.createTempDirectory("testMismatch"); in setup()
68 Files.walk(testDir).map(Path::toFile).forEach(File::delete); in cleanup()
69 Files.deleteIfExists(testDir); in cleanup()
94 Path test0a = createASCIIFile(testDir, "test0a", 0, -1, ' '); in getDataForMismatch()
95 Path test0b = createASCIIFile(testDir, "test0b", 0, -1, ' '); in getDataForMismatch()
104 Path test147a = createASCIIFile(testDir, "test147a", size, -1, ' '); in getDataForMismatch()
105 Path test147b = createASCIIFile(testDir, "test147b", size, -1, ' '); in getDataForMismatch()
106 Path test147m0 = createASCIIFile(testDir, "test147m0", size, 0, '!'); in getDataForMismatch()
260 Path test = createASCIIFile(testDir, "testNonNull", 2200, -1, ' '); in getDataForNull()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/nio/file/Files/
H A DMismatch.java58 Path testDir; field in Mismatch
62 testDir = Files.createTempDirectory("testMismatch"); in setup()
68 Files.walk(testDir).map(Path::toFile).forEach(File::delete); in cleanup()
69 Files.deleteIfExists(testDir); in cleanup()
94 Path test0a = createASCIIFile(testDir, "test0a", 0, -1, ' '); in getDataForMismatch()
95 Path test0b = createASCIIFile(testDir, "test0b", 0, -1, ' '); in getDataForMismatch()
104 Path test147a = createASCIIFile(testDir, "test147a", size, -1, ' '); in getDataForMismatch()
105 Path test147b = createASCIIFile(testDir, "test147b", size, -1, ' '); in getDataForMismatch()
106 Path test147m0 = createASCIIFile(testDir, "test147m0", size, 0, '!'); in getDataForMismatch()
260 Path test = createASCIIFile(testDir, "testNonNull", 2200, -1, ' '); in getDataForNull()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/nio/file/Files/
H A DMismatch.java58 Path testDir; field in Mismatch
62 testDir = Files.createTempDirectory("testMismatch"); in setup()
68 Files.walk(testDir).map(Path::toFile).forEach(File::delete); in cleanup()
69 Files.deleteIfExists(testDir); in cleanup()
94 Path test0a = createASCIIFile(testDir, "test0a", 0, -1, ' '); in getDataForMismatch()
95 Path test0b = createASCIIFile(testDir, "test0b", 0, -1, ' '); in getDataForMismatch()
104 Path test147a = createASCIIFile(testDir, "test147a", size, -1, ' '); in getDataForMismatch()
105 Path test147b = createASCIIFile(testDir, "test147b", size, -1, ' '); in getDataForMismatch()
106 Path test147m0 = createASCIIFile(testDir, "test147m0", size, 0, '!'); in getDataForMismatch()
260 Path test = createASCIIFile(testDir, "testNonNull", 2200, -1, ' '); in getDataForNull()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/nio/file/Files/
H A DMismatch.java58 Path testDir; field in Mismatch
62 testDir = Files.createTempDirectory("testMismatch"); in setup()
68 Files.walk(testDir).map(Path::toFile).forEach(File::delete); in cleanup()
69 Files.deleteIfExists(testDir); in cleanup()
94 Path test0a = createASCIIFile(testDir, "test0a", 0, -1, ' '); in getDataForMismatch()
95 Path test0b = createASCIIFile(testDir, "test0b", 0, -1, ' '); in getDataForMismatch()
104 Path test147a = createASCIIFile(testDir, "test147a", size, -1, ' '); in getDataForMismatch()
105 Path test147b = createASCIIFile(testDir, "test147b", size, -1, ' '); in getDataForMismatch()
106 Path test147m0 = createASCIIFile(testDir, "test147m0", size, 0, '!'); in getDataForMismatch()
260 Path test = createASCIIFile(testDir, "testNonNull", 2200, -1, ' '); in getDataForNull()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/nio/file/Files/
H A DMismatch.java58 Path testDir; field in Mismatch
62 testDir = Files.createTempDirectory("testMismatch"); in setup()
68 Files.walk(testDir).map(Path::toFile).forEach(File::delete); in cleanup()
69 Files.deleteIfExists(testDir); in cleanup()
94 Path test0a = createASCIIFile(testDir, "test0a", 0, -1, ' '); in getDataForMismatch()
95 Path test0b = createASCIIFile(testDir, "test0b", 0, -1, ' '); in getDataForMismatch()
104 Path test147a = createASCIIFile(testDir, "test147a", size, -1, ' '); in getDataForMismatch()
105 Path test147b = createASCIIFile(testDir, "test147b", size, -1, ' '); in getDataForMismatch()
106 Path test147m0 = createASCIIFile(testDir, "test147m0", size, 0, '!'); in getDataForMismatch()
260 Path test = createASCIIFile(testDir, "testNonNull", 2200, -1, ' '); in getDataForNull()
[all …]
/dports/biology/mothur/mothur-1.46.1/TestMothur/
H A Ddataset.cpp63 filenames.push_back(testDir+"test.fasta"); in getSubsetFNGFiles()
64 filenames.push_back(testDir+"test.names"); in getSubsetFNGFiles()
65 filenames.push_back(testDir+"test.groups"); in getSubsetFNGFiles()
72 return testDir+"test.count_table"; in getCountTableFile()
77 return testDir+"test.opti_mcc.shared"; in getSharedFile()
82 return testDir+"test.opti_mcc.relabund"; in getRelabundFile()
113 return (testDir+"test.dist"); in getSubsetFNGDistFile()
118 return (testDir+"test.phylip.dist"); in getSubsetFNGPhylipDistFile()
126 string testfile = testDir+"test.fasta"; in fillSeqs()
144 string testfile = testDir+"test.names"; in fillNames()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/tests/File/
H A DCreate.cs49 DirectoryInfo testDir = Directory.CreateDirectory(GetTestFilePath()); in ValidCreation()
50 string testFile = Path.Combine(testDir.FullName, GetTestFileName()); in ValidCreation()
64 Assert.StartsWith(IOInputs.ExtendedPrefix, testDir.FullName); in ValidCreation_ExtendedSyntax()
65 string testFile = Path.Combine(testDir.FullName, GetTestFileName()); in ValidCreation_ExtendedSyntax()
79 Assert.StartsWith(IOInputs.ExtendedPrefix, testDir.FullName); in ValidCreation_LongPathExtendedSyntax()
80 string testFile = Path.Combine(testDir.FullName, GetTestFileName()); in ValidCreation_LongPathExtendedSyntax()
122 string testFile = Path.Combine(testDir.FullName, GetTestFileName()); in FileInUse()
134 string testFile = Path.Combine(testDir.FullName, GetTestFileName()); in FileAlreadyExists()
187 Assert.Equal(2, Directory.GetFiles(testDir.FullName).Length); in CaseSensitive()
200 Assert.Equal(1, Directory.GetFiles(testDir.FullName).Length); in CaseInsensitive()
[all …]
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/tests/common_scenarios/Assembling/bowtie2/
H A DGTTestsBowtie2.cpp46 …(os, new BuildIndexDialogFiller(os, testDir + "_common_data/fasta/", "human_T1_cutted.fa", "Bowtie… in GUI_TEST_CLASS_DEFINITION()
59 indexList << testDir + "_common_data/scenarios/sandbox/human_T1_cutted.rev.1.bt2"; in GUI_TEST_CLASS_DEFINITION()
60 indexList << testDir + "_common_data/scenarios/sandbox/human_T1_cutted.rev.2.bt2"; in GUI_TEST_CLASS_DEFINITION()
101 …GTFile::copy(os, testDir + "_common_data/bowtie2/index/human_T1_cutted.fa", testDir + "_common_dat… in GUI_TEST_CLASS_DEFINITION()
106 testDir + "_common_data/fasta/", in GUI_TEST_CLASS_DEFINITION()
153 …GTFile::copy(os, testDir + "_common_data/bowtie2/index/human_T1_cutted.fa", testDir + "_common_dat… in GUI_TEST_CLASS_DEFINITION()
158 testDir + "_common_data/fasta/", in GUI_TEST_CLASS_DEFINITION()
219 …GTFile::copy(os, testDir + "_common_data/bowtie2/index/human_T1_cutted.fa", testDir + "_common_dat… in GUI_TEST_CLASS_DEFINITION()
224 testDir + "_common_data/fasta", in GUI_TEST_CLASS_DEFINITION()
282 AlignShortReadsFiller::Bowtie2Parameters parameters(testDir + "_common_data/bowtie2/", in GUI_TEST_CLASS_DEFINITION()
[all …]
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/tests/common_scenarios/annotations_import/
H A DGTTestsAnnotationsImport.cpp41 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
58 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
75 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
92 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
109 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
126 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
143 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
160 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
177 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
194 GTFileDialog::openFile(os, testDir + "_common_data/scenarios/annotations_import/", "se1.fa"); in GUI_TEST_CLASS_DEFINITION()
[all …]

12345678910>>...103