<?php /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload use Hello\Hello; echo Hello::world();
public function testSayAnything() { $said = new Hello(); $this->assertEquals("X JAPAN ROCK!!", $said->sayAnything("X JAPAN ROCK!!")); }