コード例 #1
0
ファイル: PathTest.php プロジェクト: amranidev/lpackager
 /**
  * SetUp.
  */
 public function setUp()
 {
     parent::setUp();
     $this->packagePath = 'Kernel';
     $this->packageName = 'Client';
     $this->path = new Path($this->packagePath, $this->packageName);
 }
コード例 #2
0
ファイル: GeneratorTest.php プロジェクト: amranidev/lpackager
 /**
  * setUp.
  */
 public function setUp()
 {
     parent::setUp();
     $this->path = new Path('Kernel', 'Product');
     $this->generator = new Generator($this->path, "Kernel\\Product");
 }
コード例 #3
0
ファイル: CommandTest.php プロジェクト: amranidev/lpackager
 public function setUp()
 {
     parent::setUp();
 }
コード例 #4
0
 /**
  * setUp.
  */
 public function setUp()
 {
     parent::setUp();
     $this->namespace = "Kernel\\Client";
     $this->parser = new NamespaceParser($this->namespace);
 }