= new Checkout(); $this->assertSame(999, $checkout->execute(999)); } public function test_1000円以上で100円割引される() { $checkout = new Checkout(); $this->assertSame(1400, $checkout->execute(1500)); } 最終的な結果(=振る舞い)を確認すれば、バグは正しく検出される 関数を実⾏して得られた結果が、期待する値になっているかを確認する