...
Anchor | ||||
---|---|---|---|---|
|
...
include com/**
(tests all files in packages whose qualified names begin with "com)include **/*Account
(tests files whose qualified names end with "Account")include path:**/Bank.java
(tests only Bank.java files)include path:C:/Project/src/**
(tests all subdirectories and files in C:/Project/src/)include path:C:/Project/src/examples/runtime/*
(tests all files in C:/Project/src/examples/runtime, but not subdirectories)include c:/include.lst
(tests all files listed in the include.lst file ; each line is treated as a single pattern)exclude **/internal/**
(tests everything in the primary testing scope except files that have "internal" as part of the package name)exclude path:**/tests/**
(tests everything in the primary testing scope except the files in the "tests" folder)
...
-data.update <pattern>
This option specifies project compilation data you want to add or overwrite in a JSON data file. It allows you to manually modify your JSON file by configuring the classpath, bootpath,sourcepath, binarypath, encoding, and sourcelevel with one of the following instructions:
...
See Compilation Data Model for details.
...
Anchor | ||||
---|---|---|---|---|
|
...
This option allows you to configures configure a single setting directly in the command line. Use the following format: key=value
.
...
Anchorworkspace workspace
-workspace <path>
Anchor | ||||
---|---|---|---|---|
|
...
-showdetails
This option increases console verbosity to display progress details.
...