|
|
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 "2007","Unit Testing"
|
The Latest from DevelopMentor
|
MORE
|
|
Processing Text Files with LINQ
Darjeeling Limited, The (2007)
Fantastic Hotel Chevalier (2007)
Life The full source code (with convenience overloads and unit tests) is available here .
I was recently writing some code to stream through a large text file, processing the lines it found that matched a regular expression. Pretty boring stuff, so my mind started to wander and I started thinking about the loops I was writing and how I could replace them with LINQ.
Jason Diamond
- Sunday, September 7, 2008
System.Transactions and Windows Vista NTFS (Updated)
Test]
course, my library comes with comprehensive unit tests. I've been playing with my fresh copy of Vista Ultimate - which I am surprised to find that I absolutely love.
Being Being a big fan of System.Transactions, I naturally wanted to use it with Vista's
TxF TxF (Transactional NTFS) file system.
Michael C. Kennedy's Weblog
- Thursday, December 6, 2007
Agile failure modes - again
Improve quality means less time spent in test at the end of a development. One way in which we seek to improve quality is through automated unit testing. This is usually undertaken as Test Driven Development or Test First Development. With automated unit tests fine grained functionality can be tested Back in April and May I discussed failure modes in Agile software development. Well I’ve found another.
Allan Kelly's Blog
- Wednesday, October 3, 2007
|
-
|
The Best from DevelopMentor
|
MORE
|
-
System.Transactions and Windows Vista NTFS (Updated)
Test]
course, my library comes with comprehensive unit tests. I've been playing with my fresh copy of Vista Ultimate - which I am surprised to find that I absolutely love.
Being Being a big fan of System.Transactions, I naturally wanted to use it with Vista's
TxF TxF (Transactional NTFS) file system.
Michael C. Kennedy's Weblog
- Thursday, December 6, 2007
-
Failures in Agile process?
Unit test break and aren’t fixed, planning meeting are missed, quality slips and deadlines are missed. They don’t want to write tests, do code reviews or pair, believe in technology over visual planning, etc. One of the questions that was posed at ACCU conference was “What are the downsides of Agile development?” rdquo; – and “What does Agile failure look like?”
Allan Kelly's Blog
- Sunday, April 22, 2007
-
Unit testing (from objectives)
You can, but you have to jump through hoops to get your test framework to push buttons. Of course there are tools which will do this for you but these usually fall into the realm of ATDD (Acceptance TDD) and system testing. And testable with other tools.) The other way of doing it is to test the output. Still responding to the questions posted in response to my TDD and objectives entry. The question was about how to do TDD, specifically UI and also about what happens when the general consistency fails.
Allan Kelly's Blog
- Monday, July 2, 2007
-
Custom ToString() for Flag based Enums, and a splatter of Unit Testing
To extend the technique to Flag'd based enums you need to effectively test the enum value against each possible flag value. To counteract this I have a handful of unit tests as part of the project that tests this functionality, so if MS ever changed the formatting algorithm for Enum.ToString(), I'm alerted immediately..This This for me is another example why unit testing is so powerful, I can make expedient decisions that I wouldn't have A project that I'm currently working on has a enum type, where the enum is defined like so [Flags] public enum EventDayMask { NONE = 0, SUNDAY = 1, MONDAY = 2, TUESDAY = 4, WEDNESDAY = 8, THURSDAY = 16, FRIDAY = 32, SATURDAY = 64 } Calling ToString on a value of type EventDayMask would result in a comma separated list of the various set bits.. EventDayMask weekend = EventDayMask.SATURDAY | EventDayMask.SUNDAY; Console.WriteLine( weekend.ToString() ); Would produce SATURDAY,SUNDAY..Whilst
.NET Mutterings
- Friday, February 2, 2007
-
Processing Text Files with LINQ
Darjeeling Limited, The (2007)
Fantastic Hotel Chevalier (2007)
Life The full source code (with convenience overloads and unit tests) is available here .
I was recently writing some code to stream through a large text file, processing the lines it found that matched a regular expression. Pretty boring stuff, so my mind started to wander and I started thinking about the loops I was writing and how I could replace them with LINQ.
Jason Diamond
- Sunday, September 7, 2008
-
Visual Studio Tricks Series: #1 Set As Startup Project
This includes at least an EXE and a unit test
project Welcome to my Visual Studio Tricks series. Here I’ll give you some quick tips for
saving saving you lots of time when working with Visual Studio.
In In
-
Agile failure modes - again
Improve quality means less time spent in test at the end of a development. One way in which we seek to improve quality is through automated unit testing. This is usually undertaken as Test Driven Development or Test First Development. With automated unit tests fine grained functionality can be tested Back in April and May I discussed failure modes in Agile software development. Well I’ve found another.
Allan Kelly's Blog
- Wednesday, October 3, 2007
|
|
|