var TestScanner = Namespace.declare("org.mocha",
  class TestScanner extends UcpComponent {
    static start() {
      console.log(this.name + " is ready");
      // new this().init();
      UcpComponentSupport.importLink(this.IOR.loader.basePath + "/src/css/TestScanner.css", "stylesheet", "text/css");
    }

    static dependencies() {
      return [
        // "/EAMD.ucp/Components/org/TestScanner/1.0.0/TestScanner.component.xml"
        "/EAMD.ucp/Components/com/twitter/Bootstrap/3.3.7/Bootstrap.component.xml"

      ];
    }

    constructor() {
      super();
      this.components = {};
    }


    init() {
      if (this.isInitialized) {
        return;
      }
      super.init();

      return this;
    }
  });