Best practices when developing

前端之家收集整理的这篇文章主要介绍了Best practices when developing前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

@H_404_1@the best practice would be TDD(Test DriveDevelopment)

@H_404_1@When you want to develop a new software orprogram,no matter how tiny it is or how large it is,the following guide won'tmislead you.

@H_404_1@First you must remember and understand,every piece of program or software is to solve some practical problems,so weshould start from the practical problem you want to solve.

  1. @H_404_1@Identify and clarify your target problem

@H_404_1@1. what problem

@H_404_1@2. the requirements

@H_404_1@3. specifications

@H_404_1@4. what does it look like

@H_404_1@5. what it can do

  1. @H_404_1@Plan it

@H_404_1@1. list all the features with deadline

@H_404_1@2. then solve them one by one

@H_404_1@3. aware the dependency

  1. @H_404_1@Write test case first --- TDD

@H_404_1@1. Junit alike unit testing

@H_404_1@2. Input,output compared with expected output

  1. @H_404_1@Develop: designing,coding,debugging
  2. @H_404_1@testing

@H_404_1@TDD follows the top-down design criteara

  1. @H_404_1@to solve the problem,write a codes---testing codes
  2. @H_404_1@to finish the testiing code,write codes
  3. @H_404_1@the finish the codes
  4. @H_404_1@then write each function

猜你在找的设计模式相关文章