@@ -14,13 +14,13 @@ public function testCouldBeConstructedWithExpectedArguments()
1414
1515 $ this ->assertSame ('theStatus ' , $ result ->getStatus ());
1616 $ this ->assertSame ('' , $ result ->getReason ());
17- $ this ->assertSame ( null , $ result ->getReply ());
17+ $ this ->assertNull ( $ result ->getReply ());
1818
1919 $ result = new Result ('theStatus ' , 'theReason ' );
2020
2121 $ this ->assertSame ('theStatus ' , $ result ->getStatus ());
2222 $ this ->assertSame ('theReason ' , $ result ->getReason ());
23- $ this ->assertSame ( null , $ result ->getReply ());
23+ $ this ->assertNull ( $ result ->getReply ());
2424 }
2525
2626 public function testCouldConstructedWithAckFactoryMethod ()
@@ -30,7 +30,7 @@ public function testCouldConstructedWithAckFactoryMethod()
3030 $ this ->assertInstanceOf (Result::class, $ result );
3131 $ this ->assertSame (Result::ACK , $ result ->getStatus ());
3232 $ this ->assertSame ('theReason ' , $ result ->getReason ());
33- $ this ->assertSame ( null , $ result ->getReply ());
33+ $ this ->assertNull ( $ result ->getReply ());
3434 }
3535
3636 public function testCouldConstructedWithRejectFactoryMethod ()
@@ -40,7 +40,7 @@ public function testCouldConstructedWithRejectFactoryMethod()
4040 $ this ->assertInstanceOf (Result::class, $ result );
4141 $ this ->assertSame (Result::REJECT , $ result ->getStatus ());
4242 $ this ->assertSame ('theReason ' , $ result ->getReason ());
43- $ this ->assertSame ( null , $ result ->getReply ());
43+ $ this ->assertNull ( $ result ->getReply ());
4444 }
4545
4646 public function testCouldConstructedWithRequeueFactoryMethod ()
@@ -50,7 +50,7 @@ public function testCouldConstructedWithRequeueFactoryMethod()
5050 $ this ->assertInstanceOf (Result::class, $ result );
5151 $ this ->assertSame (Result::REQUEUE , $ result ->getStatus ());
5252 $ this ->assertSame ('theReason ' , $ result ->getReason ());
53- $ this ->assertSame ( null , $ result ->getReply ());
53+ $ this ->assertNull ( $ result ->getReply ());
5454 }
5555
5656 public function testCouldConstructedWithReplyFactoryMethodAndAckStatusByDefault ()
0 commit comments