1234567891011121314151617181920212223242526 |
- <?php
- namespace PharIo\Version;
- use PHPUnit\Framework\TestCase;
- class AbstractVersionConstraintTest extends TestCase {
- public function testAsString() {
-
- $constraint = $this->getMockForAbstractClass(AbstractVersionConstraint::class, ['foo']);
- $this->assertSame('foo', $constraint->asString());
- }
- }
|