Testing ASP.NET webforms applications

后端 未结 3 692
伪装坚强ぢ
伪装坚强ぢ 2021-02-06 07:54

If you\'re in my position you have a big WebForms applications which have escalated to this unmaintainable thing. Things break when you add new features and you need an inexpens

3条回答
  •  情书的邮戳
    2021-02-06 08:35

    What part of your application is breaking? The UI, or the business logic?

    Business logic should be completely separated from the user interface, and should be tested separately. In particular, it's much easier to use automated unit testing tools against separated business logic than it is against UI.

提交回复
热议问题