public function testStuff()
 {
     $this->assertEquals($this->service->is10(10), true);
     $this->assertEquals($this->service->is10(8), false);
 }
Ejemplo n.º 2
0
 public function testSayHello()
 {
     $sample_service = new SampleService();
     $this->assertEquals('Hello, welcome to Dietcube.', $sample_service->sayHello());
 }