Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Failing test on indentation correction #83

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions test/Generator/MethodGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -375,4 +375,18 @@ public function testFromByReferenceMethodReflection()

self::assertStringMatchesFormat('%Apublic function & byRefReturn()%A', $methodGenerator->generate());
}


public function testClearBodyIndentation()
{
$class = new \ReflectionClass(MethodGenerator::class);
$method = $class->getMethod('clearBodyIndention');
$method->setAccessible(true);


$testMethod = '/** @return bool */ public function someMethod() { return false; }';
$clearedMethod = $method->invokeArgs( null, ['\t\t' . $testMethod]);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test uses protected API calls to trigger the failure. I can't do much with this - can you write one that uses the public API?


$this->assertEquals($testMethod, $clearedMethod);
}
}