files = [ 'en.php' => ' "and the Philosopher\'s Stone"];', 'en_ca.php' => ' "{0} and {1}"];', 'en_us.php' => ' "and the Sorcerer\'s Stone"];', 'fr.php' => ' "à l\'école des sorciers"];', 'ja.php' => ' "賢者の石"];', 'de.php' => ' "und der Stein der Weisen"];', 'pt_br.php' => ' "e a Pedra Filosofal"];', // corrupted message in valid file 'vi.php' => ' "{0} and {1"];', // corrupt files 'it.php' => ' ' 'DEAD BEEF', 'fr_ca.php' => '', // unreadable file 'ru.php' => '', ]; $vfs = vfsStream::setup("langtest", 0777, $this->files); $this->path = $vfs->url()."/"; // set up a file without read access chmod($this->path."ru.php", 0000); // make the test Lang class use the vfs files $this->l = \Phake::partialMock(Lang::class, $this->path); \Phake::when($this->l)->globFiles->thenReturnCallback(function(string $path): array { return Glob::glob($this->path."*.php"); }); // create a mock Lang object so as not to create a dependency loop self::clearData(false); Arsse::$lang = \Phake::mock(Lang::class); \Phake::when(Arsse::$lang)->msg->thenReturn(""); // call the additional setup method if it exists if (method_exists($this, "setUpSeries")) { $this->setUpSeries(); } } public function tearDown() { // verify calls to the mock Lang object \Phake::verify(Arsse::$lang, \Phake::atLeast(0))->msg($this->isType("string"), $this->anything()); \Phake::verifyNoOtherInteractions(Arsse::$lang); // clean up self::clearData(true); // call the additional teardiwn method if it exists if (method_exists($this, "tearDownSeries")) { $this->tearDownSeries(); } } }