| 1234567891011121314151617 |
- <?php
- namespace Alcaeus\MongoDbAdapter\Tests;
- use Alcaeus\MongoDbAdapter\TypeInterface;
- /**
- * @author alcaeus <alcaeus@alcaeus.org>
- */
- class MongoMaxKeyTest extends TestCase
- {
- public function testConvert()
- {
- $maxKey = new \MongoMaxKey();
- $this->skipTestUnless($maxKey instanceof TypeInterface);
- $this->assertInstanceOf('MongoDB\BSON\MaxKey', $maxKey->toBSONType());
- }
- }
|