エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
PHPUnit でプラグインのテスト駆動開発 | DriftwoodJP
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
PHPUnit でプラグインのテスト駆動開発 | DriftwoodJP
wordpress/wp-content/plugins/sandbox-hatamoto/tests/test-twitter-shortcode.php <?php /** * Class ... wordpress/wp-content/plugins/sandbox-hatamoto/tests/test-twitter-shortcode.php <?php /** * Class TwitterShortcodeTest * * @package Sandbox_Hatamoto */ class TwitterShortcodeTest extends WP_UnitTestCase { function test_twitter_shortcode() { $html = do_shortcode( '[twitter]@driftwoodjp[/twitter]' ); $this->assertEquals( '<a href="https://twitter.com/driftwoodjp">@driftwoodjp</a>', $html ); // withou