Skip to content

Commit f2f91f3

Browse files
committed
Tests to all camelCase
1 parent 2693d98 commit f2f91f3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/MatcherTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function testUserDefinedWords()
6565
$this->assertEquals('wQbg', $matches[0]->token, "user input match has correct token");
6666
}
6767

68-
public function testAddMatcher_willThrowException()
68+
public function testAddMatcherWillThrowException()
6969
{
7070
$this->expectException(\InvalidArgumentException::class);
7171

@@ -75,7 +75,7 @@ public function testAddMatcher_willThrowException()
7575
$this->expectNotToPerformAssertions();
7676
}
7777

78-
public function testAddMatcher_willReturnSelf()
78+
public function testAddMatcherWillReturnSelf()
7979
{
8080
$matcher = new Matcher();
8181
$result = $matcher->addMatcher(Bruteforce::class);

test/ZxcvbnTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function testMultibyteUserDefinedWords()
132132
$this->assertEquals('المفاتيح', $result['sequence'][0]->token, "user input match has correct token");
133133
}
134134

135-
public function testAddMatcher_willThrowException()
135+
public function testAddMatcherWillThrowException()
136136
{
137137
$this->expectException(\InvalidArgumentException::class);
138138

@@ -141,7 +141,7 @@ public function testAddMatcher_willThrowException()
141141
$this->expectNotToPerformAssertions();
142142
}
143143

144-
public function testAddMatcher_willReturnSelf()
144+
public function testAddMatcherWillReturnSelf()
145145
{
146146
$result = $this->zxcvbn->addMatcher(Bruteforce::class);
147147

0 commit comments

Comments
 (0)