|
|
jhol3990
jhol3990
 |
|
Stories kicked by jhol3990
|
|
submitted by
powerrush
8 months, 26 days ago
codeproject.com — Patterns for test method-stub generation to improve unit test effectiveness...
...one of the goals is a tool suite that can be used to automatically generate unit tests, both as a reverse and forward engineering process. With the latter, it should be possible to generate the method stubs for the code under test. read more...
|
|
tags:
TDD, CodeProject, Testing, Patterns | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 8 months, 27 days ago, submitted by
gojko
8 months, 28 days ago
gojko.net — Last week, at the London .NET User Group meeting, Ian Cooper talked about Test-driven development, focusing on both good and bad practices. I’m a big fan of learning from anti-patterns and mistakes of other people, so the second part of his session was very interesting to me. Here is a short list of things that Ian identified as symptoms that TDD has gone bad in a project, along with my comments... read more...
add a comment
|
category: Unit Testing | Views: 17
|
|
tags:
UnitTesting, TDD, Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 9 months ago, submitted by
powerrush
9 months, 1 day ago
theruntime.com — Because Unit Testing is the plain-Jane progenitor of Test Driven Development, it's kind of unfair that it doesn't have an acronym of its own. After all, it's hard to get programmer types to pay attention if they don't have some obscure jargon to bandy about. UT is too awkward, besides being a state abbreviation in the U.S., so for this post (and, if it catches on, future posts as well) I'll borrow from the telco folks and call unit testing Plain Old Unit Testing. read more...
4 comments
|
category: Unit Testing | Views: 5
|
|
tags:
POUT, TDD, Testing, UnitTesting | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Jemm
9 months, 2 days ago
msdn.microsoft.com — This issue contains topics like:
Mobile WCF, IIS7 Extensibility, VSTO 3.0, Unit Testing (TDD), F#, Modal AJAX Dialogs, Workflow... read more...
|
|
tags:
WF, TDD, 2008, WCF, Tips | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
troyhunt
9 months, 16 days ago
davesquared.blogspot.com — David Tchepak provides a down to earth outline on the rationale and benefits of TDD. read more...
|
|
tags:
TDD, Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 9 months, 20 days ago, submitted by
omar.qadan
9 months, 20 days ago
buddylindsey.com — Series of posts geared towards the beginner developer to TDD. These are meant to be as simple as possible to get the understanding across about TDD. read more...
2 comments
|
category: C# | Views: 7
|
|
tags:
Tutorials, .Net, C#, TDD | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 9 months, 22 days ago, submitted by
mister_t
9 months, 22 days ago
saftsack.fs.uni-bayreuth.de — Today I wanted to create a transparent Panel-Control in .NET in order to superimpose it on the WebBrowser Control in order to record click events. The goal was to code a simple macro recorder for websites. Unfortunatelly the .NET framework does not allow (in an easy way) to make a control fully transparent. So it was back to the good ol' winuser.h and the extended window styles. Namely 0x00000020L or as it is better known WS_EX_TRANSPARENT. read more...
add a comment
|
category: Tips & Tricks | Views: 111
|
|
tags:
TipsAndTricks, .Net, C#, CustomControls, Control | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 9 months, 22 days ago, submitted by
Jemm
9 months, 22 days ago
wakeuplater.com — An excellent website takes a particularly savvy blend of both great design and great code. Because of this, you often find designers having to figure out code and developers trying their hand at design. Speaking as a developer who spent his university years studying among other developers, I can safely say that programmers are not designers. read more...
|
|
tags:
Design, Web, Tips | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 9 months, 22 days ago, submitted by
CharlieCalvert
9 months, 22 days ago
blogs.msdn.com — Newcomers to LINQ often find expression trees difficult to grasp. In this post I hope to show that the subject is not quite as difficult as it might appear at first. Any reader who has an intermediate level understanding of LINQ should find the material in this post easy to grasp. An expression tree provides a method of translating executable code into data. This can be very valuable if you want to modify or transform code before executing it. In particular, it can be useful if you want to transform C# code such as a LINQ query expression into code that operates on another process, such as a SQL database. But I'm getting ahead of myself. By the end of this post you will find it easy to understand why it is helpful to translate code into data. First I need to provide a little background. Let's start by seeing the relatively simple syntax for creating an expression tree.
read more...
1 comment
|
category: Linq | Views: 36
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 9 months, 22 days ago, submitted by
superghost
9 months, 22 days ago
codeproject.com — ASP.NET 2.0 has many secrets, when revealed, can give you big performance and scalability boost. For instance, there are secret bottlenecks in Membership and Profile provider which can be solved easily to make authentication and authorization faster. Furthermore, ASP.NET Http pipeline can be tweaked to avoid executing unnecessary code that gets hit on each and every request... read more...
2 comments
|
category: ASP.NET | Views: 29
|
|
tags:
Pick, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 9 months, 24 days ago, submitted by
ussherm
9 months, 25 days ago
stevenharman.net — An example and walk-through showing how to use mocks, Rhino.Mocks that is, to do expectation based testing... with a little BDD flavor thrown in just for fun. read more...
|
|
tags:
BDD, rhino.mocks, TDD, Testing, StevenHarman | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 10 months ago, submitted by
keyvan
10 months, 1 day ago
aspalliance.com — Microsoft released the first CTP of ASP.NET 3.5 Extensions and it includes ASP.NET MVC Framework as one of the main extensions for ASP.NET 3.5. In the first part of this article series about building a simple blog engine with ASP.NET MVC and LINQ, Keyvan introduces the MVC pattern, ASP.NET MVC Framework, and the fundamentals of a simple blogging engine. read more...
1 comment
|
category: ASP.NET | Views: 7
|
|
tags:
ASPAlliance, ASP.MVC, MVC, ASP.NET, KeyvanNayyeri | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|