arquillian / smart-testing

We know which tests you want to run.
Apache License 2.0
25 stars 12 forks source link

Provide set of tests-to-run to TestExecutionPlanner implementations #287

Closed MatousJobanek closed 6 years ago

MatousJobanek commented 6 years ago
Issue Overview

Provide set of tests-to-run to TestExecutionPlanner implementations. There are two benefits of it

Expected Behaviour

Replace the method

Collection<TestSelection> getTests();

by two methods:

Collection<TestSelection> selectTestsFromNames(Iterable<String> testsToRun);

Collection<TestSelection> selectTestsFromClasses(Iterable<Class<?>> testsToRun);