当前位置: 首页>>代码示例>>PHP>>正文


PHP Test\Base类代码示例

本文整理汇总了PHP中Psc\Code\Test\Base的典型用法代码示例。如果您正苦于以下问题:PHP Base类的具体用法?PHP Base怎么用?PHP Base使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Base类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct(Base $testCase, $entityName, $debug = FALSE)
 {
     $this->testCase = $testCase;
     $this->hostConfig = $testCase->getHostConfig();
     $this->entityMeta = $this->getEntityMeta($entityName);
     $this->setDebug($debug);
     $this->getLogger()->setPrefix('[acceptance]');
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:8,代码来源:CMSAcceptanceTester.php

示例2: __construct

 public function __construct(\Psc\Code\Test\Base $testCase, $name, Dir $root, array $paths = NULL, $mode = Project::MODE_SRC)
 {
     $this->name = $name;
     $this->root = $root;
     $this->hostConfig = $testCase->getHostConfig();
     $this->projectsFactory = new ProjectsFactory($this->hostConfig);
     $this->paths = $paths;
     $this->mode = $mode;
     parent::__construct($testCase, $fqn = 'Psc\\CMS\\Project');
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:10,代码来源:ProjectBuilder.php

示例3: setUp

    public function setUp()
    {
        $this->chainClass = 'Psc\\System\\Deploy\\WriteChangelogTask';
        parent::setUp();
        $this->file = $this->newFile('myChangelog.php');
        $this->file->writeContents(<<<'PHP'
<?php

$data = array();
$data[] = array(
  'version'=>'2.0.9-Beta',
  'time'=>'13:14 25.06.2012',
  'changelog'=>array(
    'bugfix: Im Sound Content stand nur "content" statt dem eigentlichen Soundtext',
    'geändert: Bei der Soundsuche wird bei sehr großen Results das Ergebnis auf 15 Einträge eingeschränkt'
    //'bugfix: spinner bei autocomplete wird wieder angezeigt'
  )
);

$data[] = array(
  'version'=>'2.0.8-Beta',
  'time'=>'00:02 25.06.2012',
  'changelog'=>array(
    'geändert: tiptoi Version 2 jetzt online',
    'neu: für Externe Spiele können weitere Dateien hochgeladen werden',
    'neu: Upload Manager',
    'bugfixes: alle Tests laufen wieder'
  )
);
?>
PHP
);
        $this->writeChangelogTask = new WriteChangelogTask($this->file);
    }
开发者ID:pscheit,项目名称:psc-cms,代码行数:34,代码来源:WriteChangelogTaskTest.php

示例4: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\Net\\HTTP\\ResponseConverter';
     parent::setUp();
     $this->converter = new ResponseConverter();
     $this->fileWithWhitespace = $this->getCommonFile('whitespace file.txt');
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:ResponseConverterTest.php

示例5: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\Code\\Build\\CoreBuilder';
     parent::setUp();
     $this->out = $this->newFile('core.phar.gz');
     $this->out->delete();
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:CoreBuilderTest.php

示例6: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\Net\\HTTP\\RequestHandler';
     $this->handler = new RequestHandler($this->svc = $this->createServiceMock(), $this->converter = $this->createResponseConverterMock());
     $this->handler->setDebugLevel(15);
     parent::setUp();
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:RequestHandlerTest.php

示例7: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\CMS\\Item\\TabButtonableValueObject';
     parent::setUp();
     $this->defaultObj = $this->obj = new TabButtonableValueObject();
     $this->item = $this->getEntityMeta('Psc\\Doctrine\\TestEntities\\Article')->getAdapter(current($this->loadTestEntities('articles')));
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:TabButtonableValueObjectTest.php

示例8: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\Code\\Compile\\AddPropertyExtension';
     parent::setUp();
     $this->type = $this->createType('PositiveInteger');
     $this->extension = new AddPropertyExtension('oid', $this->type, AddPropertyExtension::DEPENDENCY_INJECTION_NONE, 'OID');
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:AddPropertyExtensionTest.php

示例9: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\JS\\Parser';
     parent::setUp();
     $this->parser = new Parser();
     $this->dsl = new AST\DSL();
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:ParserBaseTest.php

示例10: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\CMS\\EntitySearchPanel';
     parent::setUp();
     $this->meta = new \Psc\Doctrine\TestEntities\ArticleEntityMeta();
     $this->entitySearchPanel = new EntitySearchPanel($this->meta);
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:EntitySearchPanelTest.php

示例11: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\CMS\\Item\\JooseBridge';
     parent::setUp();
     $this->item = $this->getEntityMeta('Psc\\Doctrine\\TestEntities\\Article')->getAdapter(current($this->loadTestEntities('articles')));
     $this->jooseBridge = new JooseBridge($this->item);
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:JooseBridgeTest.php

示例12: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\CMS\\EntityViewPackage';
     parent::setUp();
     $this->ev = new EntityViewPackage($this->getTranslationContainer());
     $this->entityForm = $this->getMockBuilder('Psc\\CMS\\EntityForm')->disableOriginalConstructor()->getMock();
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:EntityViewPackageTest.php

示例13: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\CMS\\Service\\ControllerService';
     $this->project = $this->getMock('Psc\\CMS\\Project', array(), array(), '', FALSE);
     parent::setUp();
     $this->createControllerService();
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:ControllerServiceTest.php

示例14: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\Form\\SetValidator';
     parent::setUp();
     $this->validator = $this->createFixture();
     $this->failingValidator = $this->createFixture(array('birthday' => 'blubb', 'email' => 'wrong'));
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:ComponentsValidatorTest.php

示例15: setUp

 public function setUp()
 {
     $this->chainClass = 'Psc\\UI\\TwitterBootstrap\\Builder';
     parent::setUp();
     $this->builder = new Builder();
     $this->txt = (object) array('teaser' => (object) array('heading' => 'Teaser1 Heading', 'content' => 'Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermen', 'link' => array('/teaser1/more', 'learn more')));
 }
开发者ID:pscheit,项目名称:psc-cms,代码行数:7,代码来源:BuilderTest.php


注:本文中的Psc\Code\Test\Base类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。