vs code phpunit snippets
1.0.0
مقتطفات PHPUnit لـ VSCode
قائمة المقتطفات
assertArrayHasKey()
assertAttributeEquals()
assertClassHasAttribute()
assertClassHasStaticAttribute()
assertContains()
assertContainsOnly()
assertCount()
assertEquals()
assertEmpty()
assertEqualXMLStructure()
assertFalse()
assertFileEquals()
assertFileExists()
assertGreatherThan()
assertGreaterThanOrEqual()
assertInstanceOf()
assertInternalType()
assertLessThan()
assertLessThanOrEqual()
assertNotNull()
assertNull()
assertObjectHasAttribute()
assertRegExp()
assertSame()
assertSelectCount()
assertSelectEquals()
assertStringEqualsFile()
assertStringEndsWith()
assertStringMatchesFormat()
assertStringMatchesFormatFile()
assertSelectRegExp()
assertStringStartsWith()
assertTrue()
assertTag()
assertXmlFileEqualsXmlFile()
assertXmlStringEqualsXmlFile()
assertXmlStringEqualsXmlString()
يثبت
public function setUp()
{
// set up
}
تمزيق
public function tearDown()
{
// tear down
}
امتحان
/**
* @covers [Class]::[Method]()
*/
public function test[Method]()
{
// assertions
}
اختبار2
/**
* @covers [Class]::[Method1]()
* @covers [Class]::[Method2]()
*/
public function test[Method1]_[Method2]()
{
// assertions
}
testex
/**
* @covers [Class]::[Method]()
* @expectedException [Exception]
*/
public function test[Method]()
{
// assertions
}
testi
/**
* @covers [Class]::[Method]()
*/
public function test[Method]()
{
$this->markTestIncomplete('Not yet implemented');
}
يتمتع!