Commit 89391d25 authored by Jeremy Mikola's avatar Jeremy Mikola

Hash test case names to avoid hitting namespace limits

parent 5c646333
......@@ -15,7 +15,7 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase
{
$class = new ReflectionClass($this);
return sprintf('%s.%s', $class->getShortName(), $this->getName(false));
return sprintf('%s.%s', $class->getShortName(), hash('crc32b', $this->getName()));
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment