...
examples/*
- Matches all classes directly in theexamples
package (e.g.examples.Foo
). Theexamples.internal.Foo
class will NOT be excluded with this pattern.examples/Foo*File
- Matches all classes in theexamples
classes in theexamples
package whose class file names end start with "FileFoo" (e.g.examples.FooFile
). The Theexamples.internal.FooFile
class will NOT be excluded from the scope, as it belongs to another package.
Viewing Coverage
You can view coverage for the executed code with the Coverage view (see Viewing Coverage).