Skip to main content

Blog

Sometimes even experts mess up

·1 min

Today I received a mail from Microsoft with an invitation for an Expert session. As you can see, sometimes even the experts at Microsoft let a glitch through…

Image missing (Translation of the text inside the circle: Dear sir, madam [personalize],)

My games list

·1 min

Recently I put up a list of my Xbox 360 games. I’ll try to keep it up to date. I must say it’s difficult to choose which game to get next. There are so many good titles out! Assassins Creed, Need for Speed ProStreet, Call of Duty 4 Modern warfare, and more…

‘100% code coverage, unless…’

·2 mins

When asked about my point of view about a guideline concerning code coverage, my answer always is: go for 100% code coverage. 100%, unless… Here is why.

When the guideline for code coverage is 80% (not an uncommon guideline) the devil is in the details. Or in the 20% which is not covered to be exact. When a developer ‘only’ needs to cover 80% of his code, you can expect him (or her) to start with the easiest scenario’s, and work his way towards the more difficult scenario’s until the coverage guideline has been met. This way, the scenario’s which are the most difficult to realize as a test aren’t hit. And, more important, the developer didn’t think about the most difficult scenario’s and how to test them. In that case the remaining 20% is completely unknown*. I know several testers and I can assure you: they don’t like that.

Spam frenzy

·1 min

The last two weeks or so, my blog has been hit by a wave of comment spam. Every morning there are 20-something comments like ‘Nice’ or ‘Sorry :(’ to be deleted. Fairly pointless posts… The only link they contain seems to be in the URL field, and not in the message like they used to. Do they really think a blogger would see that kind of rubbish as a serious comment?

Project template doesn’t understand AssemblyName tag?

·2 mins

At my current project we made a project template for Visual Studio for our testers. We added all the references, folders and files a tester needs to add a new system tests project. One of the testers (!) extended our XML generator, which generated XML testcases based on data entered in Excel, to now generate a complete C# test class. Making (system) tests which are automatically run during the nightly build now really is just as simple as entering data in Excel.

Nerd alert?

·1 min

I have lots of games for my Xbox 360 I still need to / want to finish, like The Orange Box and Bioshock. And despite this, I’ve been working ’non-stop’ behind my laptop for the last two evenings to prepare it for Visual Studio 2008, and to download and install it. It’s almost time… 😉

This is NOT a test.

·2 mins

Test Driven Development is hot, just like unit testing your software and any other kinds of (automated) testing. And as we all know: sometimes stuff that’s hot is misinterpreted, explained wrong or just simply used in a really bad way. Unfortunately, testing is no exception to this rule…

DreamScene is here! But what happened to the other Windows Vista Ultimate Extras?

·1 min

Back in July, Barry Goffe (Director Windows Vista Ultimate) mentioned that the missing Extras identified in January would be released at the end of the summer. I just got a bit curious about when these Extras would finally be released, so I visited windowsultimate.com again. And there it was: DreamScene was released recently (September 25th). And although I’m not quite sure if I’ll use this ever day, it’s kind of a cool feature. Isn’t it?

HALO 3: my (first) 2 cents

·1 min

WOW
The single player mode feels like a multiplayer game, with excellent gameplay. Certain parts of the game are pretty creepy, and I like it that there are some surprising elements in there. Sometimes you expect something to happen, which doesn’t. And when you least expect it…. So the (story in the) game is original. That makes a game interesting to play. One of the things I like a lot is that you can use almost everything your opponents use, like vehicles and weapons
The multiplayer part is just great. I played online with some friends this weekend, and we had a blast!

HowTo: Disable specific Code Analysis rules for a Team Build

·3 mins

Thanks to the MSDN forums{.} (and specifically one Hua Chen), I found a way{.} to disable specific code analysis rules for a team build. In this post I’ll combine the steps I followed earlier with the description given at the MSDN forum. I’ll start out with some steps earlier on in the process: how to quickly get a list of all the code analysis rules you want to disable (without having to type it all yourself 😉 ).