private SwitchYardModel _scannedModel;
@Before
public void setUp() throws Exception {
BeanSwitchYardScanner scanner = new BeanSwitchYardScanner();
List<URL> urls = new ArrayList<URL>();
// If running this test inside your IDE... you need to set the cwd to be the
// root of the bean module !!
urls.add(new File("./target/test-classes").toURI().toURL());
ScannerInput<SwitchYardModel> input = new ScannerInput<SwitchYardModel>()
.setURLs(urls)
.setExcludePackages(BeanUTConstants.BEAN_SCANNER_BLACK_LIST);
_scannedModel = scanner.scan(input).getModel();
}