1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/test/StructTest.php
2015-07-29 23:23:53 -04:00

51 lines
1.6 KiB
PHP

<?php
namespace Amp\Test;
class StructTest extends \PHPUnit_Framework_TestCase {
/**
* @expectedException \DomainException
* @expectedExceptionMessage Amp\Test\StructTestFixture property "callbac" does not exist ... did you mean "callback?"
*/
public function testSetErrorWithSuggestion() {
$struct = new StructTestFixture;
$struct->callbac = function(){};
}
/**
* @expectedException \DomainException
* @expectedExceptionMessage Amp\Test\StructTestFixture property "callbac" does not exist ... did you mean "callback?"
*/
public function testGetErrorWithSuggestion() {
$struct = new StructTestFixture;
$test = $struct->callbac;
}
/**
* @expectedException \DomainException
* @expectedExceptionMessage Amp\Test\StructTestFixture property "callZZZZZZZZZZZ" does not exist
*/
public function testSetErrorWithoutSuggestion() {
$struct = new StructTestFixture;
$struct->callZZZZZZZZZZZ = "test";
}
/**
* @expectedException \DomainException
* @expectedExceptionMessage Amp\Test\StructTestFixture property "callZZZZZZZZZZZ" does not exist
*/
public function testGetErrorWithoutSuggestion() {
$struct = new StructTestFixture;
$test = $struct->callZZZZZZZZZZZ;
}
/**
* @expectedException \DomainException
* @expectedExceptionMessage Amp\Test\StructTestFixture property "__propertySuggestThreshold" does not exist
*/
public function testSuggestionIgnoresPropertyStartingWithUnderscore() {
$struct = new StructTestFixture;
$test = $struct->__propertySuggestThreshold;
}
}