Test Driven Development in PHP

前端 未结 8 2013
青春惊慌失措
青春惊慌失措 2021-01-29 23:47

I am a web-developer working in PHP. I have some limited experience with using Test Driven Development in C# desktop applications. In that case we used nUnit for the unit testin

8条回答
  •  忘了有多久
    2021-01-29 23:59

    I've used both PHPUnit & SimpleTest and I found SimpleTest to be easier to use.

    As far as TDD goes, I haven't had much luck with it in the purest sense. I think that's mainly a time/discipline issue on my part though.

    Adding tests after the fact has been somewhat useful but my favorite things to do is use write SimpleTest tests that test for specific bugs that I have to fix. That makes it very easy to verify that things are actually fixed and stay fixed.

提交回复
热议问题