| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function testMethodType() |
||
| 13 | {
|
||
| 14 | $methodType = new Blueprint; |
||
| 15 | |||
| 16 | $methodType->id(); |
||
| 17 | $methodType->string('first_name');
|
||
| 18 | $methodType->string('last_name');
|
||
| 19 | $methodType->string('email')->unique();
|
||
| 20 | $methodType->string('password');
|
||
| 21 | $methodType->boolean('active')->default(0);
|
||
| 22 | $methodType->timestamps(); |
||
| 23 | |||
| 24 | $this->assertNotEmpty($methodType->getQuery()); |
||
| 25 | } |
||
| 27 |