silverstripe-framework/tests/core/manifest/ConfigStaticManifestTest.php

33 lines
823 B
PHP
Raw Normal View History

2013-03-12 03:32:46 +01:00
<?php
class ConfigStaticManifestTest extends SapphireTest {
private static $testString = 'string';
2013-03-12 03:32:46 +01:00
private static $testArray = array('foo' => 'bar');
2013-03-12 03:32:46 +01:00
protected static $ignored = true;
2013-03-12 03:32:46 +01:00
public function testGet() {
$manifest = new SS_ConfigStaticManifest();
2013-03-12 03:32:46 +01:00
// Test madeup value
$this->assertNull($manifest->get(__CLASS__, 'madeup', null));
// Test string value
$this->assertEquals('string', $manifest->get(__CLASS__, 'testString'));
// Test array value
$this->assertEquals(array('foo' => 'bar'), $manifest->get(__CLASS__, 'testArray'));
2013-03-12 03:32:46 +01:00
// Test to ensure we're only picking up private statics
$this->assertNull($manifest->get(__CLASS__, 'ignored', null));
// Test madeup class
if(!class_exists('aonsffgrgx')) {
$this->assertNull($manifest->get('aonsffgrgx', 'madeup', null));
}
}
}