Completed
Push — master ( 8871bc...78797b )
by Siwapun
03:45
created

ToLowerTest::testToLower()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Aerophant\RamdaTest;
4
5
use function Aerophant\Ramda\toLower;
6
use PHPUnit\Framework\TestCase;
7
8
class ToLowerTest extends TestCase
9
{
10
  public function testToLower()
11
  {
12
    $expect = 'abc';
13
    $actual = toLower()('ABC');
14
    $this->assertEquals($expect, $actual);
15
  }
16
}
17