Mocking Objects in Dotnet with Typemock Isolator Mocking Frameworkfor .Net Unit Testing

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • mo.sparrow

    Mocking Objects in Dotnet with Typemock Isolator Mocking Frameworkfor .Net Unit Testing

    The advantages of unit testing are well known, giving development
    teams a safety net to facilitate change, ease integration and supply
    live documentation.U nit testing of small logical code is quite easy
    and can show value quickly.
    But in real life, our code will use other classes and components. If
    this happens, things can get quite fragile and the tests will quickly
    become system tests.
    Typemock Isolator enables developers to unit test all their code by
    magically disconnecting and isolating external components.
    Typemock Isolator uses aspect-oriented technology to redirect calls
    from the real code. This enables developers to define the behavior of
    the external component required for a tested scenario. For example,
    you can simulate that the disk is full when writing to a database by
    instructing Typemock Isolator to throw an OutOfDiskSpaceE xception when
    writing to the database. This is a scenario that will be nearly
    impossible to test without Typemock Isolator. The developer defines
    the behavior in the actual unit test and Typemock Isolator
    automatically isolates all required components.

    To learn more - http://www.typemock.com/Product.html
Working...