This test ensures that the various import patterns work correctly.

Source files:

my.test.package.*

my.test.package.a matched
my.test.package.a.x not matched
my.test.package.b matched
my.test.package.b.x not matched

my.test.package.**

my.test.package.a matched
my.test.package.a.x matched
my.test.package.b matched
my.test.package.b.x matched

my.test.package.*.*

my.test.package.a not matched
my.test.package.a.x matched
my.test.package.b not matched
my.test.package.b.x matched

my.test.package.a.**

my.test.package.a matched
my.test.package.a.x matched
my.test.package.b not matched
my.test.package.b.x not matched