jcshepherd commented on code in PR #294: URL: https://github.com/apache/cassandra-website/pull/294#discussion_r2421279364
########## site-content/source/modules/ROOT/pages/development/testing.adoc: ########## @@ -86,23 +86,33 @@ To run the unit tests: ant test ---- -However, this is probably not what you want to do, since that -command would run all the unit tests (those from `test/unit`). It would -take about an hour or more to finish. +However, this is probably not what you want to do, since that command will run all +the unit tests (those from `test/unit`). It will take about an hour or more to finish. -To run the specific test class or even a method, use the following -command: +To run all the tests in a specific test class use the following command: + +[source,none] +---- +ant testsome -Dtest.name=<TestClassName> Review Comment: Okay, take a look-see. I went back and forth on interleaving ant and build-tests.sh examples, but finally separated them. Also build-tests.sh doesn't (today) support running a single test method but being able to run a single class is probably sufficient for most people. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

