zoukankan      html  css  js  c++  java
  • [Unit Test] Unit Test Brief Introduction


    Levels of Testing
    - Acceptance
    - Performance
    - Functional
    - Integration
    - Unit

    Why Unit Testing
    - Feedback Cycles
    - Usage Model
    - Eailier Bug Detection
    - Refactoring

    Test Driven Development (TDD)
    `Write the tests before writing the code (incrementally)
    - Better requirements understanding
    - Better decomposition and design
    - Better code testability
    - Known expectation of code hebavior
    - Bonus: unit tests & coverage

    Frameworks
    -General xUnit framework: Junit, Nunit CppUnit
    -Mocking framework: mockito, easymock, powermocks
    -Domain specific framework: HTTPUnit, xmlUnit, DBUnit
    -Code Coverage: EclEmma Clover
    -Performance Testing Tools: JMeter JUnitPerf JMeter + Badboy NeoLoad  WAS
    -Continuous Integration Tools: Jenkins, CruiseControl
    -Web Service UI: SoapUI Rest-Client

    Writing Unit Tests for legacy Code
    - Legacy Code any code without tests
    - Refactoring: Layer, Injection
    - Characterisation Test

    Rspec
    Aptana Studio

    SPAL

  • 相关阅读:
    shell基础
    函数属性
    this的使用
    循环
    正则表达式中的方法
    判断是不是数组
    ECMAScript5中数组方法
    ECMAScript3中数组方法
    break和continue、return的区别
    用来枚举属性的对象工具函数
  • 原文地址:https://www.cnblogs.com/coder211/p/7117812.html
Copyright © 2011-2022 走看看