| |
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.
|
8 Articles match "Unit Testing","Windows Workflow"
| Related DevelopMentor Courses | MORE | | Guerrilla.NET (UK) Training Create workflows that can model complex processing using flowchart workflows. Create declarative services using workflow that can be deployed as simple text files Decouple your entity model from the data using Plain Old CLR Objects (POCOs). Create robust code using unit testing frameworks and mocking Simplify your service deployment with zero config services with WCF 4.0. Write modern web applications that are simpler to unit test with ASP.NET MVC. Workflow 4, ASP.NET MVC and Silverlight. Day 4 Windows Workflow Foundation 4.0 DevelopMentor Courses - Tuesday, March 1, 2011 Essential Windows Workflow Foundation 4 (WF4) Training Gain understanding of the strengths and weaknesses of Windows Workflow Foundation 4. Understand how workflow activities work and what their role is. Discover what part of your application is best suited to use Windows Workflow Foundation and why. Learn how you can empower your end users to create new, or change existing, workflows to adapt to the changing business environment. Understand what the best way is to host your workflows in the various execution environments.NET is found like Windows Server AppFabric. DevelopMentor Courses - Wednesday, February 22, 2012 What's New in.NET 4 Training Create workflows that can model complex processing using flowchart workflows. Create declarative services using workflow that can be deployed as simple text files Decouple your entity model from the data using Plain Old CLR Objects (POCOs). Build Windows 7 ready applications with WPF 4.0. Write rich web applications that are simpler to unit test. This release sees: the introduction of a new library for writing multithreaded code, PFx; a rewrite of the workflow infrastructure first introduced in.NET 3.0; Day 3 Workflow 4.0 Workflow 4.0 DevelopMentor Courses - Wednesday, February 22, 2012 |
8 Articles match "Unit Testing","Windows Workflow"
| The Latest from DevelopMentor | MORE | | Article: 10 Features in.NET 4.0 that made Me Smile Code contracts allow you to assert truths about your code as if you are writing a unit test. WF (Windows Workflow Foundation) has an AsyncCodeActivity class. If you have looked at long-running workflows in.NET 3.5 I recently wrote another article for DevelopMentor 's Developments newsletter (not subscribed yet? see top-right of this page ). This one is entitled. 10 Features in.NET 4.0 that made Me Smile. Read it on the DevelopMentor website: [link]. am republishing it below for you all to enjoy on your RSS readers. Cheers, Michael. 10 Features in.NET 4.0 Michael C. Kennedy's Weblog - Wednesday, December 16, 2009 Article: 10 Features in.NET 4.0 that made Me Smile Code contracts allow you to assert truths about your code as if you are writing a unit test. WF (Windows Workflow Foundation) has an AsyncCodeActivity class. If you have looked at long-running workflows in.NET 3.5 I recently wrote another article for DevelopMentor 's Developments newsletter (not subscribed yet? see top-right of this page ). This one is entitled. 10 Features in.NET 4.0 that made Me Smile. Read it on the DevelopMentor website: [link]. am republishing it below for you all to enjoy on your RSS readers. Cheers, Michael. 10 Features in.NET 4.0 Michael C. Kennedy's Weblog - Wednesday, December 16, 2009 Passing data into a Windows Workflow Foundation 4 workflow 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. basically on the outside you have to create a dictionary with as key something inside of the 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. The Problem Solver - Tuesday, June 30, 2009 | -
| 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. Unit Testing Activities with Windows Workflow Foundation by Ron Jacobs. TDD and Windows Workflow Foundation by Ron Jacobs. 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. Michael C. Kennedy's Weblog - Tuesday, September 30, 2008 - Significant Advances in Unit Testing Windows Workflow
This post describes a unit testing library for testing Windows Workflow Foundations.It Rather it’s a library that can be used in conjunction with any of these testing frameworks. Download the library with sample … Continue reading → Agile.NET agile Articles Visual Studio WF Workflowis not a framework like HarnessIt, NUnit, or MsTest. Michael C. Kennedy's Weblog - Sunday, January 18, 2009 - Article: 10 Features in.NET 4.0 that made Me Smile
Code contracts allow you to assert truths about your code as if you are writing a unit test. WF (Windows Workflow Foundation) has an AsyncCodeActivity class. If you have looked at long-running workflows in.NET 3.5 I recently wrote another article for DevelopMentor 's Developments newsletter (not subscribed yet? see top-right of this page ). This one is entitled. 10 Features in.NET 4.0 that made Me Smile. Read it on the DevelopMentor website: [link]. am republishing it below for you all to enjoy on your RSS readers. Cheers, Michael. 10 Features in.NET 4.0 Michael C. Kennedy's Weblog - Wednesday, December 16, 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 … Continue reading → Agile Articles WF Workflow Michael C. Kennedy's Weblog - Tuesday, September 30, 2008 - Article: 10 Features in.NET 4.0 that made Me Smile
Code contracts allow you to assert truths about your code as if you are writing a unit test. WF (Windows Workflow Foundation) has an AsyncCodeActivity class. If you have looked at long-running workflows in.NET 3.5 I recently wrote another article for DevelopMentor 's Developments newsletter (not subscribed yet? see top-right of this page ). This one is entitled. 10 Features in.NET 4.0 that made Me Smile. Read it on the DevelopMentor website: [link]. am republishing it below for you all to enjoy on your RSS readers. Cheers, Michael. 10 Features in.NET 4.0 Michael C. Kennedy's Weblog - Wednesday, December 16, 2009 - The new Windows Workflow Foundation 4 runtime
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. It basically runs a workflow and prints a message when done: static void Main( string [] args). {. Console.WriteLine( "The workflow has completed." Console.WriteLine( "The workflow has completed." " ); }; myInstance.Run(); Console.WriteLine( "Waiting for the workflow to complete." Nice right! The Problem Solver - Tuesday, June 23, 2009 %>
| | |