Home
last modified time | relevance | path

Searched refs:testTags (Results 1 – 25 of 173) sorted by relevance

1234567

/dports/biology/bamutil/bamUtil-1.0.15/test/
H A DtestTags.sh4 ../bin/bam convert --in testFiles/testTags.sam --out results/testTagsSam2Sam.sam --noph > results/t…
10 diff results/testTagsSam2Sam.sam expected/testTags.sam && \
12 diff results/testTagsSam2Sam.err expected/testTags.err
19 ../bin/bam convert --in testFiles/testTags.sam --out results/testTagsSam2Bam.bam --noph > results/t…
25 diff results/testTagsSam2Bam.bam expected/testTags.bam && \
27 diff results/testTagsSam2Bam.err expected/testTags.err
36 ../bin/bam convert --in testFiles/testTags.bam --out results/testTagsBam2Sam.sam --noph > results/t…
42 diff results/testTagsBam2Sam.sam expected/testTags.sam && \
44 diff results/testTagsBam2Sam.err expected/testTags.err
54 ../bin/bam convert --in testFiles/testTags.bam --out results/testTagsBam2Bam.bam --noph > results/t…
/dports/devel/scalatest/scalatest-1.6.1/src/main/scala/org/scalatest/
H A DFunSuite.scala1211 protected def test(testName: String, testTags: Tag*)(testFun: => Unit) {
1212 …t(testName, testFun _, "testCannotAppearInsideAnotherTest", "FunSuite.scala", "test", testTags: _*)
1230 protected def ignore(testName: String, testTags: Tag*)(testFun: => Unit) {
1231 …est(testName, testFun _, "ignoreCannotAppearInsideATest", "FunSuite.scala", "ignore", testTags: _*)
H A DPropSpec.scala399 protected def property(testName: String, testTags: Tag*)(testFun: => Unit) {
400 …testFun _, "propertyCannotAppearInsideAnotherProperty", "PropSpec.scala", "property", testTags: _*)
418 protected def ignore(testName: String, testTags: Tag*)(testFun: => Unit) {
419 …testName, testFun _, "ignoreCannotAppearInsideAProperty", "PropSpec.scala", "ignore", testTags: _*)
H A DSpec.scala1323 def apply(specText: String, testTags: Tag*)(testFun: => Unit) {
1324 …sterTest(specText, testFun _, "itCannotAppearInsideAnotherIt", "Spec.scala", "apply", testTags: _*)
1407 protected def ignore(testText: String, testTags: Tag*)(testFun: => Unit) {
1408 …oredTest(testText, testFun _, "ignoreCannotAppearInsideAnIt", "Spec.scala", "ignore", testTags: _*)
H A DFeatureSpec.scala1572 protected def scenario(specText: String, testTags: Tag*)(testFun: => Unit) {
1574 …tFun _, "scenarioCannotAppearInsideAnotherScenario", "FeatureSpec.scala", "scenario", testTags: _*)
1595 protected def ignore(specText: String, testTags: Tag*)(testFun: => Unit) {
1596 …Text), testFun _, "ignoreCannotAppearInsideAScenario", "FeatureSpec.scala", "ignore", testTags: _*)
H A DEngine.scala125 private def checkTestOrIgnoreParamsForNull(testName: String, testTags: Tag*) {
128 if (testTags.exists(_ == null))
401 …ClosedResourceName: String, sourceFileName: String, methodName: String, testTags: Tag*): String = …
403 checkRegisterTestParamsForNull(testText, testTags: _*)
422 val tagNames = Set[String]() ++ testTags.map(_.name)
431 …gistrationClosedResourceName: String, sourceFileName: String, methodName: String, testTags: Tag*) {
433 checkRegisterTestParamsForNull(testText, testTags: _*)
444 val tagNames = Set[String]() ++ testTags.map(_.name)
467 private def checkRegisterTestParamsForNull(testText: String, testTags: Tag*) {
470 if (testTags.exists(_ == null))
H A DFreeSpec.scala1512 private def registerTestToRun(specText: String, testTags: List[Tag], testFun: () => Unit) {
1514 …isterTest(specText, testFun, "itCannotAppearInsideAnotherIt", "FreeSpec.scala", "it", testTags: _*)
1535 private def registerTestToIgnore(specText: String, testTags: List[Tag], testFun: () => Unit) {
1538 …edTest(specText, testFun, "ignoreCannotAppearInsideAnIt", "FreeSpec.scala", "ignore", testTags: _*)
H A DWordSpec.scala1641 private def registerTestToRun(specText: String, testTags: List[Tag], testFun: () => Unit) {
1643 …isterTest(specText, testFun, "itCannotAppearInsideAnotherIt", "WordSpec.scala", "it", testTags: _*)
1664 private def registerTestToIgnore(specText: String, testTags: List[Tag], testFun: () => Unit) {
1667 …edTest(specText, testFun, "ignoreCannotAppearInsideAnIt", "WordSpec.scala", "ignore", testTags: _*)
H A DFlatSpec.scala1457 private def registerTestToRun(specText: String, testTags: List[Tag], testFun: () => Unit) {
1460 …isterTest(specText, testFun, "itCannotAppearInsideAnotherIt", "FlatSpec.scala", "it", testTags: _*)
2526 private def registerTestToIgnore(specText: String, testTags: List[Tag], testFun: () => Unit) {
2529 …edTest(specText, testFun, "ignoreCannotAppearInsideAnIt", "FlatSpec.scala", "ignore", testTags: _*)
/dports/devel/scalatest/scalatest-1.6.1/src/main/scala/org/scalatest/fixture/
H A DFixturePropSpec.scala502 protected def property(testName: String, testTags: Tag*)(testFun: FixtureParam => Any) {
503 …tName, testFun, "testCannotAppearInsideAnotherTest", "FixturePropSpec.scala", "test", testTags: _*)
521 protected def ignore(testName: String, testTags: Tag*)(testFun: FixtureParam => Any) {
522 …estName, testFun, "ignoreCannotAppearInsideATest", "FixturePropSpec.scala", "ignore", testTags: _*)
H A DFixtureFunSuite.scala398 protected def test(testName: String, testTags: Tag*)(testFun: FixtureParam => Any) {
399 …tName, testFun, "testCannotAppearInsideAnotherTest", "FixtureFunSuite.scala", "test", testTags: _*)
417 protected def ignore(testName: String, testTags: Tag*)(testFun: FixtureParam => Any) {
418 …estName, testFun, "ignoreCannotAppearInsideATest", "FixtureFunSuite.scala", "ignore", testTags: _*)
H A DFixtureFeatureSpec.scala410 protected def scenario(specText: String, testTags: Tag*)(testFun: FixtureParam => Any) {
412 … "scenarioCannotAppearInsideAnotherScenario", "FixtureFeatureSpec.scala", "scenario", testTags: _*)
433 protected def ignore(specText: String, testTags: Tag*)(testFun: FixtureParam => Any) {
434 … testFun , "ignoreCannotAppearInsideAScenario", "FixtureFeatureSpec.scala", "ignore", testTags: _*)
H A DFixtureSpec.scala444 def apply(specText: String, testTags: Tag*)(testFun: FixtureParam => Any) {
445 …est(specText, testFun, "itCannotAppearInsideAnotherIt", "FixtureSpec.scala", "apply", testTags: _*)
529 protected def ignore(specText: String, testTags: Tag*)(testFun: FixtureParam => Any) {
530 …est(specText, testFun, "ignoreCannotAppearInsideAnIt", "FixtureSpec.scala", "ignore", testTags: _*)
H A DFixtureFreeSpec.scala419 …private def registerTestToRun(specText: String, testTags: List[Tag], testFun: FixtureParam => Any)…
421 …st(specText, testFun, "itCannotAppearInsideAnotherIt", "FixtureFreeSpec.scala", "it", testTags: _*)
442 …private def registerTestToIgnore(specText: String, testTags: List[Tag], testFun: FixtureParam => A…
444 …edTest(specText, testFun, "ignoreCannotAppearInsideAnIt", "FreeSpec.scala", "ignore", testTags: _*)
H A DFixtureWordSpec.scala417 …private def registerTestToRun(specText: String, testTags: List[Tag], testFun: FixtureParam => Any)…
419 …st(specText, testFun, "itCannotAppearInsideAnotherIt", "FixtureWordSpec.scala", "it", testTags: _*)
440 …private def registerTestToIgnore(specText: String, testTags: List[Tag], testFun: FixtureParam => A…
442 …edTest(specText, testFun, "ignoreCannotAppearInsideAnIt", "WordSpec.scala", "ignore", testTags: _*)
H A DFixtureFlatSpec.scala403 …private def registerTestToRun(specText: String, testTags: List[Tag], testFun: FixtureParam => Any)…
406 …st(specText, testFun, "itCannotAppearInsideAnotherIt", "FixtureFlatSpec.scala", "it", testTags: _*)
1686 …private def registerTestToIgnore(specText: String, testTags: List[Tag], testFun: FixtureParam => A…
1689 …specText, testFun, "ignoreCannotAppearInsideAnIt", "FixtureFlatSpec.scala", "ignore", testTags: _*)
/dports/graphics/opencv/opencv-4.5.3/modules/ts/src/
H A Dts_tags.cpp284 const std::vector<std::string>& testTags = currentDirectTestTags; in checkTestTags() local
293 for (size_t j = 0; j < testTags.size(); ++j) in checkTestTags()
295 const std::string& testTag = testTags[i]; in checkTestTags()
315 for (size_t i = 0; i < testTags.size(); ++i) in checkTestTags()
317 const std::string& testTag = testTags[i]; in checkTestTags()
322 for (size_t i = 0; i < testTags.size(); ++i) in checkTestTags()
324 const std::string& testTag = testTags[i]; in checkTestTags()
352 std::vector<std::string>& testTags = direct ? currentDirectTestTags : currentImpliedTestTags; in applyTestTagImpl() local
353 for (size_t i = 0; i < testTags.size(); ++i) in applyTestTagImpl()
355 const std::string& testTag = testTags[i]; in applyTestTagImpl()
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/DataDog/datadog-go/statsd/
H A Doptions_test.go24 testTags := []string{"rocks"}
32 WithTags(testTags),
41 assert.Equal(t, options.Tags, testTags)
/dports/graphics/p5-Image-ExifTool/Image-ExifTool-12.30/t/
H A DGeotag.t33 my @testTags = ('Error', 'Warning', 'GPS:*', 'XMP:*');
53 my $info = $exifTool->ImageInfo($testfile2, @testTags);
68 my $info = $exifTool->ImageInfo($testfile, @testTags);
82 $info = $exifTool->ImageInfo($testfile, @testTags);
96 $info = $exifTool->ImageInfo($testfile5, 'Filename', @testTags);
119 my $info = $exifTool->ImageInfo($testfile, @testTags);
172 my $info = $exifTool->ImageInfo($testfile, @testTags);
193 my $info = $exifTool->ImageInfo($testfile, @testTags);
/dports/graphics/p5-Image-ExifTool-devel/Image-ExifTool-12.14/t/
H A DGeotag.t33 my @testTags = ('Error', 'Warning', 'GPS:*', 'XMP:*');
53 my $info = $exifTool->ImageInfo($testfile2, @testTags);
68 my $info = $exifTool->ImageInfo($testfile, @testTags);
82 $info = $exifTool->ImageInfo($testfile, @testTags);
96 $info = $exifTool->ImageInfo($testfile5, 'Filename', @testTags);
119 my $info = $exifTool->ImageInfo($testfile, @testTags);
172 my $info = $exifTool->ImageInfo($testfile, @testTags);
193 my $info = $exifTool->ImageInfo($testfile, @testTags);
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/DataDog/datadog-go/statsd/
H A Doptions_test.go26 testTags := []string{"rocks"}
36 WithTags(testTags),
47 assert.Equal(t, options.Tags, testTags)
/dports/security/vault/vault-1.8.2/vendor/github.com/DataDog/datadog-go/statsd/
H A Doptions_test.go26 testTags := []string{"rocks"}
36 WithTags(testTags),
47 assert.Equal(t, options.Tags, testTags)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/DataDog/datadog-go/statsd/
H A Doptions_test.go35 testTags := []string{"rocks"}
49 WithTags(testTags),
68 assert.Equal(t, options.Tags, testTags)
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/vendor/github.com/DataDog/datadog-go/statsd/
H A Doptions_test.go35 testTags := []string{"rocks"}
49 WithTags(testTags),
68 assert.Equal(t, options.Tags, testTags)
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/legacy-cloud-providers/azure/
H A Dazure_managedDiskController_test.go46 testTags := make(map[string]*string)
47 testTags[WriteAcceleratorEnabled] = to.StringPtr("true")
70 …e.EncryptionAtRestWithCustomerKey}, ProvisioningState: to.StringPtr("Succeeded")}, Tags: testTags},
82 …e.EncryptionAtRestWithCustomerKey}, ProvisioningState: to.StringPtr("Succeeded")}, Tags: testTags},
94 …e.EncryptionAtRestWithCustomerKey}, ProvisioningState: to.StringPtr("Succeeded")}, Tags: testTags},
107 …e.EncryptionAtRestWithCustomerKey}, ProvisioningState: to.StringPtr("Succeeded")}, Tags: testTags},
120 …e.EncryptionAtRestWithCustomerKey}, ProvisioningState: to.StringPtr("Succeeded")}, Tags: testTags},
133 …e.EncryptionAtRestWithCustomerKey}, ProvisioningState: to.StringPtr("Succeeded")}, Tags: testTags},
146 …e.EncryptionAtRestWithCustomerKey}, ProvisioningState: to.StringPtr("Succeeded")}, Tags: testTags},

1234567