|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
13 Articles match "Unit Testing","Windows"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential Windows Workflow Foundation 4 - WF4 Training
Gain understanding of the strengths and weaknesses of Windows Workflow Foundation 4. Discover what part of your application is best suited to use Windows Workflow Foundation and why. Essential Windows Workflow Foundation 4 teaches best practices for developing Windows Workflow Foundation applications. Learn why Windows Workflow Foundation 4 was created and discover how to support human and system activities by organizing them into workflows. Day 1 Introduction and Architecture What is Windows Workflow Foundation and how it can help your business.
DevelopMentor Courses
- Thursday, June 3, 2010
Essential Windows Workflow Foundation 4 - WF4
Gain understanding of the strengths and weaknesses of Windows Workflow Foundation 4. Discover what part of your application is best suited to use Windows Workflow Foundation and why. Windows Workflow Foundation 4 teaches best practices for developing Windows Workflow Foundation applications. Learn why Windows Workflow Foundation 4 was created and discover how to support human and system activities by organizing them into workflows. Learn how to host Windows Workflow Foundation 4, create custom activities, and develop workflows in Windows Workflow Foundation 4.
DevelopMentor Courses
- Tuesday, November 17, 2009
Virtual ASP.NET MVC
How can I build unit tests for my MVC application? Decoupling and IoC In this module we will see how to design for unit testing using the repository and service patterns and how to utilize dependency injection. Unit Testing and Mocking Unit testing is one of the main motivators for MVC. This module examines how MVC facilitates unit testing and how to write unit tests. We will also see how mocking frameworks aid in unit testing. How do I write views to render HTML dynamically?
DevelopMentor Courses
- Thursday, May 27, 2010
|
13 Articles match "Unit Testing","Windows"
|
The Latest from DevelopMentor
|
MORE
|
|
Purchasing Visual Studio 2010
Testing. Unit Testing. Test Impact Analysis. Coded UI Test. Web Performance Testing. Load Testing 1. Microsoft Test Manager 2010. Test Case Management 2. Manual Test Execution. Fast-Forward for Manual Testing. Database Unit Testing. Database Test Data Generation. Windows Development. Test Case Management 2. MSDN Subscription - Software for Development and Test Use 4. Windows Azure™. †. ††. †††. Windows (client and server operating systems). Plain. with MSDN.
The Blomsma Code
- Tuesday, July 13, 2010
Survival Skills for Developers
Unit testing. You must be able to write and execute unit tests for the language and platform you are developing on. Unit testing is like a compass. Unit testing has its fair share of zealous proponents and vehement haters. Unit testing is incredibly important in some circumstances. am not an adherent to the Church of Test Driven Development. do not usually attempt to achieve complete code coverage in unit tests. To survive you need the right tools / supplies and the skills to use them. Outcode. Outbuild.
Ardent Dev
- Wednesday, February 10, 2010
MVVM: Introducing the message visualizers
The CanExecute handler for each of them will test the Title property – ensure there is a value there, and the inbound parameter (the Message) and make sure there is a value there as well. Notice that I test to ensure the visualizer is available – remember that services can be replaced or removed – I might do this in my unit tests for example (I actually mock the interface rather than replace it, but you get the point – test to make sure it’s there). lt; Window x : Class ="ServicesTest.Views.MainWindow". IErrorVisualizer. INotificationVisualizer. par ??
Mark's Blog of Random Thoughts
- Monday, February 1, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Significant Advances in Unit Testing Windows Workflow
This post describes a unit testing library for testing Windows Workflow Foundations. Rather it's a library that can be used in conjunction with any of these testing frameworks. Download the library with sample test project here: Kennedy.WorkflowTesting.zip (216 KB). First a Little History: Last September I posted this teaser entitled Unit Testing Coming to a Workflow Near You. In that previous post, I highlighted what I could determine to be the current state-of-the-art with regard to unit testing workflows, circa September 2008.
Michael C. Kennedy's Weblog
- Sunday, January 18, 2009
-
Unit Testing Coming to a Workflow Near You
[Update: See the follow up post "Significant Advances in Unit Testing Windows Workflow" ]. If you've been working with Windows Workflow, you'll find it has some cool features for orchestration, long running operations, state machines, etc. However you won't find very much support for Test Driven Development (TDD) or unit testing in general. In fact the architecture that makes Windows Workflow powerful (strict separation of workflow, activities, and the host for example) really gets in the way of unit tests. Scott Allen.
Michael C. Kennedy's Weblog
- Tuesday, September 30, 2008
-
TDD Invades Space Invaders
As a follow-up to our " Avoiding 5 Common Pitfalls in Unit Testing " article we did a webcast where we took a problem from the audience and solved it live and unrehearsed on stage. The thing to remember is that all of this was done for the sole purpose of creating a recipe for a scenario we could test. Create a new test project. We made it to step 4 during our presentation (download code below) and estimate another 15 minutes would have had the whole scenario done, tested, and well-factored. Tags: DevelopMentor Screencasts Talks Unit Testing
Michael C. Kennedy's Weblog
- Wednesday, October 28, 2009
-
Unblocking assemblies in Windows 7
I just ran into a little problem when attempting to run a Visual Studio unit test on my Windows 7 machine. downloaded log4net.dll and wanted to use it in a project, but when running the unit test I ran into the following error: Failed to queue test run 'Mark@L-ONE 2009-10-11 14:08:38': Test Run deployment issue: The location of the file or directory 'c:usersmarkdocumentsvisual studio 2008projectssourcesdevelopone.myproject.unittestsbindebuglog4net.dll' is not trusted. Tags: NET C# Windows 7 Turns out that a downloaded file is blocked.
The Blomsma Code
- Sunday, October 11, 2009
-
Unblocking assemblies in Windows 7
I just ran into a little problem when attempting to run a Visual Studio unit test on my Windows 7 machine. downloaded log4net.dll and wanted to use it in a project, but when running the unit test I ran into the following error: Failed to queue test run 'Mark@L-ONE 2009-10-11 14:08:38': Test Run deployment issue: The location of the file or directory 'c:usersmarkdocumentsvisual studio 2008projectssourcesdevelopone.myproject.unittestsbindebuglog4net.dll' is not trusted. Tags: NET C# Windows 7 Turns out that a downloaded file is blocked.
The Blomsma Code
- Sunday, October 11, 2009
-
The new Windows Workflow Foundation 4 runtime
Not only very useful for running the odd workflow but also for unit testing as any WorkflowElement, the base class for all activities, can be executed this way. With WF3 there was a central workflow runtime environment called the WorkflowRuntime and used to manage the lifetime of workflow instances. In WF4 this central class no longer exists and we manage individual workflows. To compare the two, this is what a minimal console application looks like in WF3. It basically runs a workflow and prints a message when done: static void Main( string [] args). {. Synchronous execution.
The Problem Solver
- Tuesday, June 23, 2009
-
Passing data into a Windows Workflow Foundation 4 workflow
No improvement where, unless you consider the somewhat easier unit testing with the WorkflowInvoker. And just in case you where thinking “But a unit test will take care of that right?” keep in mind that workflows tend to be complex and long running things not very well suited to unit testing. Passing parameters into a workflow is similar in WF4 as it was in WF3. In both case a Dictionary is passed in when creating the workflow instance object. Alternatively when using the WF4 WorkflowInvoker you can pass it into the Invoke() method. myInstance.Run().
The Problem Solver
- Tuesday, June 30, 2009
|
|
|