Skip to content

Instantly share code, notes, and snippets.

@robertbasic
Created March 25, 2013 19:55
Show Gist options
  • Select an option

  • Save robertbasic/5240124 to your computer and use it in GitHub Desktop.

Select an option

Save robertbasic/5240124 to your computer and use it in GitHub Desktop.
<?php
public function testMockingConstants()
{
$this->assertTrue(MyMock::MY_CONST);
}
MyMock extends MyClass
{
CONST MY_CONST = true;
}
class MyClass
{
CONST MY_CONST = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment