I am very pleased to announce the introduction of the new WebUI Test Studio Support Knowledgebase. Our support engineer's have been hard at work adding valuable content. Some of the new article topics include: Troubleshooting Misaligned Element Highlighting Creating a Scheduling Server Manually Activating your WebUI Test Studio License Repeating Actions for Multiple Users with Login (using the Test As Step feature) Many more to come! We encourage you to bookmark this site and check back often - it will be a great resource for all things WebUI!
[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(()...
am happy to announce that we have added a new data control to our Silverlight portfolio with one of our latest internal builds. The control will have its official premiere with the upcoming 2010 Q3 Service Pack 1, which is expected in early January. With the release of this service pack you will get access to all of RadDomainDataSource online examples. Since the first version of RadDomainDataSource is now 100% feature complete and has already passed QA, we have decided that we might as well share it with you as a small Christmas present. RadDomainDataSource is a Silverlight control that provides the missing...
This year we at Telerik wanted to come up with a special way to spread the holiday spirit and send our best wishes to our customers. We just couldn’t think of a better way to wish you joyful holidays than to do it through our favorite .NET Ninja, but this time – his holiday edition. Check out this cool holiday card, customize the Holiday Ninja, write what you want to get for the holidays and share it with your friends on Facebook and Twitter! We hope you get what you wanted this year! Happy Holidays from Telerik!...
In early 2011 Telerik is heading to India again, this time to organize its own 1-day event in Pune, India. The free seminar on Agile Development and Testing will take place on January 18 (9am-5pm) at the Mahratta Chamber of Commerce in Pune. The training day will be split in two sessions that will respectively cover implementing your own Agile development processes and Agile testing. If you are a developer/development manager using the Microsoft .NET platform or you are interested in learning how to make your testing efforts more efficient, than make sure to show up on Tuesday, January 18...
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.
Hi everyone! As you know RadChart supports selection and hover interactivity effects and 2010.Q3 release exposes an API that allows you, the developer, to control it. Now I am going to show you how you can select any number of items only by moving your mouse. First let’s start with the rectangle selector that the user draws with its mouse. I have added a canvas on top of the Radchart to hold the rectangle. We need to listen to MouseLeftButtonDown, MouseMove and MouseLeftButtonUp events to control the rectangle position and size. The tricky part is how to convert the size of the rectangle...
Yesterday, we released Q3 2010 SP1 which introduced
many improvements and bug fixes
throughout the whole suite.
The most important improvements aim to satisfy the customers’ demands regarding a better
RadGridView Property Builder
and a new Office 2010 theme (also known as Office 2010 Silver):
RadGridView Office2010 (Silver)
Last week I started a blog post series that introduces our approach of automating the Windows Phone unit test execution on our build machines simply sharing the idea behind the automation infrastructure. I have also prepared a diagram that follows the automation process and have structured what I plan to share with you in the following weeks. Now, with the second post of the series I am going to make a more detailed technical overview of our infrastructure and give some reasons for choosing the discussed approach. The Dedicated Build Task and communication with the Windows Phone 7 emulator As already mentioned,...