We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add new built in command in Test suite that lists full names of all test classes or test cases.
E.g.
mill myLib.test.testList com.myCompany.aa.FooTest com.myCompany.aa.BarTest com.myCompany.bb.BlaaTest com.myCompany.cc.BlaaBlaaTest com.myCompany.cc.BazTest com.myCompany.cc.HelloWorldTest
or with all test case names
mill myLib.test.testList -n com.myCompany.aa.FooTest.myCase1 com.myCompany.aa.BarTest."myCase 1" com.myCompany.aa.BarTest."myCase 2" com.myCompany.bb.BlaaTest.testCase01 com.myCompany.cc.BlaaBlaaTest."testCase 01" com.myCompany.cc.BlaaBlaaTest."testCase 02" com.myCompany.cc.BlaaBlaaTest."testCase 03" com.myCompany.cc.BazTest.testBadValues com.myCompany.cc.HelloWorldTest.testGoodValues com.myCompany.cc.HelloWorldTest."test good and bad values"
so that it is easy to use this output for scripting like:
mill show myLib.test.testOnly -- com.myCompany.cc.HelloWorldTest."test good and bad values"
The text was updated successfully, but these errors were encountered:
I like the idea, but I think the TestFramework abstraction we use can only provide us a list of test classes, not all test cases.
TestFramework
Sorry, something went wrong.
Add TestModule.discoveredTestClasses target to ease test inspection
TestModule.discoveredTestClasses
f76b06a
Fix #3169
Add TestModule.discoveredTestClasses target to ease test inspection (…
4916d61
…#3191) Example usage: ``` > mill show __.discoverTestClasses { "foo.test.discoverTestClasses": [ "foo.tests.FooTests", "foo.tests.FoobarTests" ] "bar.test.discoverTestClasses": [ "foo.tests.BarTests" ] } ``` Fix #3169 Pull request: #3191
Successfully merging a pull request may close this issue.
Please add new built in command in Test suite that lists full names of all test classes or test cases.
E.g.
or with all test case names
so that it is easy to use this output for scripting like:
mill show myLib.test.testOnly -- com.myCompany.cc.HelloWorldTest."test good and bad values"
The text was updated successfully, but these errors were encountered: