Completed
Push — stable ( 86ecc3...3a45ea )
by Nuno
07:34
created

ConstantsTest::it_defines_the_artisan_binary()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Tests;
4
5
class ConstantsTest extends TestCase
6
{
7
    /** @test */
8
    public function it_defines_the_artisan_binary()
9
    {
10
        $this->assertEquals(ARTISAN_BINARY, 'application');
11
    }
12
}
13