expectException($class); $this->expectExceptionCode($code); } } trait LanguageTestingHelpers { static function setUpBeforeClass() { // this is required to keep from having exceptions in Lang::msg() in turn calling Lang::msg() and looping Lang\Exception::$test = true; // test files self::$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"];', 'vi.php' => ' ' ' 'DEAD BEEF', 'fr_ca.php' => '', // unreadable file 'ru.php' => '', ]; self::$vfs = vfsStream::setup("langtest", 0777, self::$files); self::$path = self::$vfs->url()."/"; // set up a file without read access chmod(self::$path."ru.php", 0000); // make the Lang class use the vfs files self::$defaultPath = Lang::$path; Lang::$path = self::$path; } static function tearDownAfterClass() { Lang\Exception::$test = false; Lang::$path = self::$defaultPath; self::$path = null; self::$vfs = null; self::$files = null; Lang::set("", true); Lang::set(Lang::DEFAULT); } }