public function setUp()
 {
     parent::setUp();
     $this->fs = m::mock('Caffeinated\\Beverage\\Filesystem');
     $this->compiler = m::mock('Illuminate\\View\\Compilers\\BladeCompiler');
     $this->generator = new StubGenerator($this->compiler, $this->fs);
 }
Example #2
0
 public function tearDown()
 {
     parent::tearDown();
     $this->clean($this->workspace);
     umask($this->umask);
 }
Example #3
0
 public function setUp()
 {
     parent::setUp();
     $this->s = new Sorter();
 }