Skip to content

Instantly share code, notes, and snippets.

@inc2734
Created February 15, 2017 06:24
Show Gist options
  • Select an option

  • Save inc2734/6c0920516d9fb909e9b8d1e89c8bff77 to your computer and use it in GitHub Desktop.

Select an option

Save inc2734/6c0920516d9fb909e9b8d1e89c8bff77 to your computer and use it in GitHub Desktop.
ぺちぱな用サンプルテストコード
<?php
/**
* Class SampleTest
*
* @package Sample_Plugin
*/
/**
* Sample test case.
*/
class SampleTest extends WP_UnitTestCase {
/**
* A single example test.
*/
function test_sample() {
// Replace this with some actual testing code.
$this->assertTrue( true );
}
function test_the_content() {
$this->assertEquals( 'ぺちぱな', do_shortcode( '[phperna]' ) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment