PHPUnit, Test "A gibi davranır ..."

1 Cevap php

I have a series of PHPUnit tests to validate a class, "Class A".
I have another class, "Class B" which extends Class A.

"B Sınıfı A'nın testleri geçer", veya diğer bir deyişle test kodu çoğaltma olmadan "B Sınıfı A gibi davranır" olduğunu test etmek için iyi bir yolu var mı?

I could test for the extends (using instanceof), but that seems like a misleading test.
I care that it behaves like Class A, not that it extends Class A, right? or wrong?

1 Cevap

Sadece B sınıfı için, böyle yapmalı, A sınıfı PHPUnit test case uzatmak.