0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
test
/
language
/
WriteFile
/
[
Home
]
File: FactoryTest.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: FactoryTest.php 53803 2015-02-06 00:42:50Z jyhem $ require_once('lib/language/Exception.php'); require_once('lib/language/WriteFile/Factory.php'); use org\bovigo\vfs\vfsStream; use org\bovigo\vfs\vfsStreamFile; class Language_WriteFile_FactoryTest extends TikiTestCase { protected $obj; protected function setUp() { // setup a mock filesystem $lang = vfsStream::setup('lang'); $this->langFile = new vfsStreamFile('language.php'); $lang->addChild($this->langFile); $this->filePath = vfsStream::url('lang/language.php'); $this->obj = new Language_WriteFile_Factory; } public function testFactory_shouldReturnWriteFileObject() { $writeFile = $this->obj->factory($this->filePath); $this->assertEquals('Language_WriteFile', get_class($writeFile)); } }