Telerik blogs

Latest

For the latest product updates, please visit Release.

  • Productivity Testing

    Sequential and Recursive Mocking with JustMock Free Edition

    [Cross Posted from http://www.skimedic.com/blog] Sequential Mocking One of the trickiest types of code to mock out for testing is recursive methods.  In a typical recursion, the same method is called multiple times, and each time there are typically different parameters passed in, and different return values.  To easily handle this, JustMock gives you two options: Adding InSequence() to each arrange Chaining Returns() calls together. To illustrate the first option, look at the following test: [Test] public void Show_Sequential_InSequence_Arrange_Option() { var service = Mock.Create<IService>(); Mock.Arrange(() => service.GetSum(Arg.AnyInt, Arg.AnyInt)) .Returns(4).InSequence(); Mock.Arrange(()...
    December 25, 2010 3 min read
  • Productivity Testing

    Test Scheduling Updates in 2010 Q3 Service Pack 1

    This week we published the latest official release of our automated testing tools – 2010 Q3 Service Pack. This release enhances product stability by introducing a lot of improvements and bug fixes in many areas. I’d like to focus this post on the latest optimizations and important bug fixes in the Test Scheduling feature. I’ll start with the QA Edition changes. Project Tab Now you can find the following Scheduling commands in the Project Tab.
    December 17, 2010 4 min read
  • Productivity Testing

    Introducing JustMock Free Edition

    [Cross posted from .NET Musings] Technorati Tags: mocking,.NET,Testing,TDD,BDD,JustMock,Telerik Today Telerik launched a free edition of it’s commercial mocking tool, JustMock Free Edition.  The commercial version of JustMock has been out now for a while, and brings incredible power to the table, such as mocking sealed and static classes, non-public members and types, as well as many more features.  For more information on the commercial version of JustMock, see  http://www.telerik.com/products/mocking.aspx. I do a lot of testing.  I am addicted to TDD/BDD, and can’t live without a mocking tool. The new (or “greenfield”) code that I develop is based on interfaces, SOLID, etc., and I don’t always...
    December 15, 2010 3 min read
  • Productivity Testing

    Automated Testing Tools Q3 2010 Service Pack Release

    We are pleased to announce the release of our QA Automation Software's official service pack release. This release contains enhancements and updates to our official Q3 release. Updated areas include Licensing, HTML Automation, Silverlight Automation, Command Line Execution, Execution Engine, Test Scheduling, Test Explorer, DOM Explorer, Data Binding, RadControl for ASP.NET AJAX & Silverlight Wrapper and much more, click here to see the detailed release notes. Login to your Telerik account and navigate to the Automated Testing section to get your update today.
    December 15, 2010 1 min read