LoginSignup
8
7

More than 5 years have passed since last update.

PHPUnitの$this->assertXXXX() の別記法

Last updated at Posted at 2013-01-04

staticメソッドなので、self::でも呼べるみたい。

<?php
class SomeTest extends PHPUnit_Framework_TestCase
{
  function testSomething() {
    $this->assertEquals(2, 1+1); //普通こう書くけど
    self::assertEquals(2, 1+1);  //これでもOK
  }
}

$this-> より self::の方がタイプするのが楽かも。

8
7
7

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
7