Telerik blogs

Latest

  • Productivity

    Mocking MsCorlib members

    In this post , I will show how you can mock  members from MsCorlib. This is more of an introductory post and shows what you need to do in order to successfully mock an MsCorlib member. If you are planning to mock File or DateTime then the process is pretty straight forward , you just need to put a MockClassAttribute on top your test class. The process for intercepting  such is bit different as we don’t want to get your code through the particular logic for every other type and make your test slower. Therefore, we limit it to an attribute declaration to mark...
    May 27, 2021 2 min read
  • Productivity Debugging

    TeamPulse R1 2011 is Here: Bug Tracking, Productivity Features

    We are very excited to announce the official release of the R1 2011 version of our agile project management tool TeamPulse. This release expands the tool’s feature set with the addition of a Bug Tracking module, which allows users to record, triage, assign and evaluate bugs in an easy and intuitive way. We also wanted R1 2011 to be about increasing individual and team productivity. That’s why we introduced features like the “My Perspective” view, and the interactive TaskBoard, which give users more control over their daily work. Read through for the full list of new ...
    May 27, 2021 3 min read
  • Productivity Reporting

    Creating a Calendar Report with Telerik Reporting

    An interesting question that we frequently are being asked is: How to create a calendar report? Generally, the requirement is to create a report showing appointments and bookings just as in a month planner calendar/scheduler. When you think about it, tracking tasks and events when displayed in a calendar is instant - the users have all the information they need into a well known layout that allows to easily analyze tasks and projects. It is no wonder that our clients request this type of report. The easiest way to prepare a dynamic calendar report is to utilize our flexible crosstab/table/list item. Due to the...
    May 07, 2025 2 min read
  • Productivity Testing

    Automate your WPF Applications with Test Studio

    We are excited to announce the new major release of our automated testing tools getting live today. This is version 2011.1 R1 featuring: · Recording and playback of WPF applications · Support for WPF controls including RadControls for WPF · Improved Silverlight v4 controls support · Enhanced cross-browser support with the new additions of IE9 and FF4 · Result reporting functionality · New Find Expression UI with richer options · Enhanced and simplified Licensing and many other improvements. Find the summary on the live site here.
    May 27, 2021 1 min read
  • Productivity

    Mocking MessageBox.Show with JustMock

    Using JustMock Commercial Edition you can easily mock out calls to MessageBox.Show().  This can come in handy if you are testing code that bases its execution path on a MessageBox’s result. Also, it is unlikely you want the MessageBox to actually pop up while running your tests.  Let’s see how we can accomplish this!  The Basics [TestMethod] public void MOCK_MESSAGEBOX_RESULT() { bool called = false; DialogResult expected =...
    May 27, 2021 3 min read