@@ -505,40 +505,35 @@ protected void registerContainerListeners()
505505 }
506506
507507 @ Override
508- @ NotNull
509- public Set <Class > getIntegrationTests ()
508+ public @ NotNull Set <Class <?>> getIntegrationTests ()
510509 {
511- @ SuppressWarnings ({"unchecked" })
512- Set <Class > testClasses = new HashSet <>(Arrays .asList (
513- Barcoder .TestCase .class ,
514- BamIterator .TestCase .class ,
515- SequenceIntegrationTests .SequenceImportPipelineTestCase .class ,
516- //SequenceIntegrationTests.SequenceAnalysisPipelineTestCase3.class,
517- SequenceIntegrationTests .SequenceAnalysisPipelineTestCase1 .class ,
518- SequenceIntegrationTests .SequenceAnalysisPipelineTestCase2 .class ,
519- OutputIntegrationTests .VariantProcessingTest .class ,
520- SequenceRemoteIntegrationTests .class ,
521- SequenceTriggerHelper .TestCase .class ,
522- SequencePipelineServiceImpl .TestCase .class
523- ));
524-
525- return testClasses ;
510+ return Set .of (
511+ Barcoder .TestCase .class ,
512+ BamIterator .TestCase .class ,
513+ SequenceIntegrationTests .SequenceImportPipelineTestCase .class ,
514+ //SequenceIntegrationTests.SequenceAnalysisPipelineTestCase3.class,
515+ SequenceIntegrationTests .SequenceAnalysisPipelineTestCase1 .class ,
516+ SequenceIntegrationTests .SequenceAnalysisPipelineTestCase2 .class ,
517+ OutputIntegrationTests .VariantProcessingTest .class ,
518+ SequenceRemoteIntegrationTests .class ,
519+ SequenceTriggerHelper .TestCase .class ,
520+ SequencePipelineServiceImpl .TestCase .class
521+ );
526522 }
527523
528524 @ Override
529- @ NotNull
530- public Set <Class > getUnitTests ()
525+ public @ NotNull Set <Class <?>> getUnitTests ()
531526 {
532- return PageFlowUtil . set (
533- SequenceAlignmentTask .TestCase .class ,
534- SequenceAnalysisManager .TestCase .class ,
535- SequenceJob .TestCase .class ,
536- SequenceJobSupportImpl .TestCase .class ,
537- ProcessVariantsHandler .TestCase .class ,
538- VariantProcessingJob .TestCase .class ,
539- ScatterGatherUtils .TestCase .class ,
540- ChainFileValidator .TestCase .class ,
541- FastqcRunner .TestCase .class
527+ return Set . of (
528+ SequenceAlignmentTask .TestCase .class ,
529+ SequenceAnalysisManager .TestCase .class ,
530+ SequenceJob .TestCase .class ,
531+ SequenceJobSupportImpl .TestCase .class ,
532+ ProcessVariantsHandler .TestCase .class ,
533+ VariantProcessingJob .TestCase .class ,
534+ ScatterGatherUtils .TestCase .class ,
535+ ChainFileValidator .TestCase .class ,
536+ FastqcRunner .TestCase .class
542537 );
543538 }
544539
0 commit comments