@@ -40,7 +40,7 @@ public function thereIsATweet()
4040 */
4141 public function theTweetMustHaveCorrectId ()
4242 {
43- \PHPUnit_Framework_Assert ::assertSame (
43+ \PHPUnit \ Framework \Assert ::assertSame (
4444 152120320 ,
4545 $ this ->tweet ->getId ()
4646 );
@@ -51,7 +51,7 @@ public function theTweetMustHaveCorrectId()
5151 */
5252 public function theTweetMustHaveCorrectCreatedAtDate ()
5353 {
54- \PHPUnit_Framework_Assert ::assertSame (
54+ \PHPUnit \ Framework \Assert ::assertSame (
5555 $ this ->now ,
5656 $ this ->tweet ->getCreatedAt ()
5757 );
@@ -62,7 +62,7 @@ public function theTweetMustHaveCorrectCreatedAtDate()
6262 */
6363 public function theTweetMustHaveCorrectText ()
6464 {
65- \PHPUnit_Framework_Assert ::assertSame (
65+ \PHPUnit \ Framework \Assert ::assertSame (
6666 'Hello World! ' ,
6767 $ this ->tweet ->getText ()
6868 );
@@ -73,7 +73,7 @@ public function theTweetMustHaveCorrectText()
7373 */
7474 public function theTweetMustHaveCorrectRetweetCount ()
7575 {
76- \PHPUnit_Framework_Assert ::assertSame (
76+ \PHPUnit \ Framework \Assert ::assertSame (
7777 1999 ,
7878 $ this ->tweet ->getRetweetCount ()
7979 );
@@ -84,7 +84,7 @@ public function theTweetMustHaveCorrectRetweetCount()
8484 */
8585 public function theTweetMustHaveCorrectFavoriteCount ()
8686 {
87- \PHPUnit_Framework_Assert ::assertSame (
87+ \PHPUnit \ Framework \Assert ::assertSame (
8888 42 ,
8989 $ this ->tweet ->getFavoriteCount ()
9090 );
@@ -95,7 +95,7 @@ public function theTweetMustHaveCorrectFavoriteCount()
9595 */
9696 public function theTweetMustBeInTimeline ()
9797 {
98- \PHPUnit_Framework_Assert ::assertTrue (
98+ \PHPUnit \ Framework \Assert ::assertTrue (
9999 $ this ->tweet ->isInTimeline ()
100100 );
101101 }
0 commit comments