Created
February 15, 2017 06:24
-
-
Save inc2734/6c0920516d9fb909e9b8d1e89c8bff77 to your computer and use it in GitHub Desktop.
ぺちぱな用サンプルテストコード
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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