By tag: testing
0
kicks
Unit testing improvements in Visual Studio 2012 Update 2
This post explains the features that have been introduced for unit testing in Visual Studio 2012 update 1 and 2. Visual Studio 2012 update 1 and 2 introduced many new features for testing which can be read here. New features grouping and filtering tests by project, by trait or by class enables teste...
0
kicks
Testing Features added in Visual Studio 2012 Update 2
This post explains the enhanced testing features that were introduced with Visual Studio 2012 update 2. In Visual Studio 2012 Update 2 Microsoft Test Manager (MTM) has been updated with new features enabling manual testers more productive and efficient. The new feature Test Management and execution ...
0
kicks
Load testing REST APIs
A round-up of the tools I've found and used for load testing REST APIs. Hopefully a time-saver for other developers going down the same path.
0
kicks
Automated code quality testing using Roslyn
Claus has written a nice piece on how you can use Roslyn for analyzing your code quality (static code analysis) and run it like any other automated test. Pretty awesome.
0
kicks
Form Extensions for Selenium 2.0 (WebDriver)
These are a series of extension methods for WebElements in WebDriver. These helpers (IsSelected, IsChecked, SetChecked, GetOptionByValue) make it easier to work with form data in Selenium 2.0.
0
kicks
Testing and mocking your C# code with F#
A comparison on mocking C# code 3 ways: C# and Moq, raw F# code, or F# with Foq - and why it might be beneficial to use F# as a testing language.
0
kicks
Assertion is the key of unit testing
We all probably know about the importance of good unit test suite for our projects and about the Arrange-Act-Assert pattern we should be using in our tests. I don't have anything against the tests not following the AAA form as long as I can read, understand and maintain them easily. But there's one ...
0
kicks
My Agile Journey
What has helped me and what I've noticed, while learning the Agile Software Development
0
kicks
Getting Started with Getting Started
The first test is the hardest! See how I get started when writing code with TDD!
0
kicks
NancyFx Testing Tutorial
A quick tutorial on how testing works in NancyFx and how Nancy.Testing can make your life easier.
0
kicks
Good unit test – One Assert
One of the rules of Good unit test is "Use one assert pert test. To write good unit tests you also have to remember about "One test per concept" rule.
0
kicks
SpecsFor 3.0 Preview Available on NuGet
The first preview release of SpecsFor 3.0 is now available on NuGet. This release cleans up and simplifies much of the core while dropping some ill-conceived features, but it also adds a brand new system for composing test context.
0
kicks
To Test or Not To Test - Private Methods
Testing private methods is a bit of a no no, that's what we are told anyway. This article explains why its a bad practice and what you should do instead.
0
kicks
Understanding Mock and frameworks – Part 3 of N
This series highlights the concept of mocking, preparing your application, using mocking frameworks, comparing them and ensuring that your code is ‘Well-Tested and Covered’ using Rhino Mocks, Moq, NSubstitute
0
kicks
Understanding Mock and frameworks – Part 2 of N
This article starts with TDD, followed by explaining frameworks and their differences. Frameworks covered in this series are Rhino Mocks, NSubstitute, Moq. This series is a complete guide to be a master in TDD with Mocks