pligguser

Stories kicked by pligguser

Arrange Act Assert and BDD specifications(lostechies.com)

submitted by brandewinderbrandewinder(530) 3 years, 10 months ago

With Rhino Mocks 3.5 just around the corner, I've started using it to create much more readable tests. One of the things that always bothered me with Expect.Call, constraints and the like was that it mixed in the Arrange with Assert. For those that haven't heard of AAA, it's a pattern for authoring unit tests: * Arrange - set up the unit under test * Act - exercise the unit under test, capturing any resulting state * Assert - verify the behavior through assertions As I moved towards BDD context/specification style tests, working with Rhino Mocks didn't fit the picture very well. But with the new AAA syntax of Rhino Mocks 3.5, I can very cleanly separate out the behavior I want to observe from the mechanics of setting up the test. read more...

add a comment |category: |Views: 163

tags: another

BlogSvc - New Blogging Service for .NET 3.5(jvance.com)

submitted by JarrettVJarrettV(270) 3 years, 10 months ago

A new project has been started on CodePlex to create a blogging service using .NET 3.5. A community preview was recently released. read more...

add a comment |category: |Views: 16

tags: another

Howto use jQuery with asp.net mvc preview 4’s AjaxHelper(chrisvandesteeg.nl)

submitted by alleyalley(2840) 3 years, 10 months ago

Working on jQuery4mvc preview 4, one of the first things I ofcourse wanted to do was to replace the ASP.NET Ajax library that’s used by the AjaxHelper. Unfortunately the AjaxHelper itself is sealed, so atm we can’t (easily) change how the AjaxHelper generates its links. So what I did is create a javascript library that uses the same methodnames as the MicrosoftMvcAjax version. read more...

1 comment |category: |Views: 350

tags: another

A Programming Job Interview Challenge #13 - Brackets (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 10 months ago

Your input is a string which is composed from bracket characters. The allowed characters are:’(', ‘)’, ‘['. ']‘, ‘{’, ‘}’, ‘<’ and ‘>’. Your mission is to determine whether the brackets structure is legal or not. read more...

add a comment |category: |Views: 246

tags: another

Learning Ruby via IronRuby and C# Part 1(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 10 months ago

Part one of many in migrating your C# skills over to Ruby read more...

1 comment |category: |Views: 206

tags: another

Silverlight 2.0 - Concepts To Become A Silverlight Master (Part 2)(silverlighthack.com)

submitted by rev4bartrev4bart(420) 3 years, 10 months ago

Part 2 of a series of Concepts to Become a Silverlight Master. Part 2 focuses on WCF and how it complements Silverlight. read more...

add a comment |category: |Views: 170

tags: another

Getting started with custom SharePoint Event Receivers(saftsack.fs.uni-bayreuth.de)

submitted by eXXLeXXL(120) 3 years, 10 months ago

In this post I describe how to create a custom SharePoint Event Receiver using the Visual Studio Extensions for SharePoint Services. read more...

add a comment |category: |Views: 147

tags: another

New Modules for IIS7(hanselman.com)

submitted by jonasjonas(2215) 3 years, 10 months ago

Scott Hanselman describes three new preview releases the IIS7 team put out this week. read more...

add a comment |category: |Views: 222

tags: another

Open Source ASP.NET 3.5 AJAX Portal - new and improved(msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 10 months ago

A new release of Dropthings, open source ASP.NET 3.5 AJAX portal. Features many performance and scalability techniques and a new design. Showcases: - 10 ASP.NET Performance and Scalability Secrets. - Fast ASP.NET page rendering by deferred script loading. - Load large amount of Javascripts in batch and thus load AJAX sites a lot faster. - Fast Streaming AJAX proxy that solves double downloading problems and continuously streams content from external domain. - Making best use of cache for high performance website. - On-demand UI loading on AJAX websites. read more...

add a comment |category: |Views: 589

tags: another

Getting Started with TDD(stevesmithblog.com)

submitted by ssmithssmith(1160) 3 years, 10 months ago

Getting started with Test Driven Development can be challenging. In this blog post, Steve offers some advice on how to get started either for a brand new project or one that already in maintenance mode. read more...

2 comments |category: |Views: 422

tags: another