Archive for the 'Uncategorized' Category
Irish Open Spaces Coding Day II
Hi all:
Just thought I d post here that a group of us in Dublin. Alt.Net are organizing a coding day the 24th of April in UCD, it should be a fun day of hacking some code. One of the really cool things is that James Gregory will be there talking about Fluent Nhibernate.
If this sounds [...]
Filed under: Uncategorized | Leave a Comment
I understand the title makes little sense, but this is probably what I would search in a web search engine ( hopefully at the time I ll find my own post) A short, unordered list of things I install when I get a new machine/wipped machine
An FTP client Filezilla will do
Firefox + Add [...]
Filed under: Uncategorized | 4 Comments
DDD South West
So there is another DDD event the 5th of June, and this time is in Bristol, call for speakers is on ( if you want to submit, you can get instructions on how to do so here)
Sessions look interesting so far.
I really enjoyed the last DDD in Reading, Uk.
Filed under: Uncategorized | Leave a Comment
The Art of Unit Testing – Review
A few of us have been reading this book as a part of a book club. Finally I think is time to push a review for this book .
Let me start saying that my expectations for the book were very high, the book club helped because we were really reading it in depth and going [...]
Filed under: Uncategorized | Leave a Comment
Tags: unit-testing
The other day I was listening to Kent Beck in this podcast where he was talking about, amongst other things, push on green deployment, basically the idea is that once your test suite goes green, you deploy.
When I heard this originally I thought :
1) Think about all possible problems -> not only technical( this component is [...]
Filed under: Uncategorized | 5 Comments
Tags: deployment, development, push-on-green
Test Class Organization
Hi there
Just though I d share this
this is the way I ve been organizing my test code as of late
public class MyClassTests
{
public class Given_a_context
{
[Fact]
public void When_somthing_happens_Then_result()
{
throw new NotImplementedException();
}
//……………
}
public class Given_a_different_context
{
[Fact]
public void When_somthing_happens_Then_result()
{
throw new NotImplementedException();
}
//……………
}
}
I like this because you can still easily find the class name with resharper
you can also separate the contexts you are testing [...]
Filed under: Uncategorized | 9 Comments
Tags: unit-testing
DDD8 was a lot of fun!
I really didn’t know what to expect and it turned out great, and got to a few talks ( not as many as I wanted tho) and met personally a lot of really interesting people.
Moving on swiftly to the meaty bit of the post:
I’ve uploaded the code and slides to [...]
Filed under: Uncategorized | 6 Comments
Step by Step StarterSTS Setup
I m planing on a series of blogs on WIF ( windows Identity Foundation) however that might or might not happen , so meanwhile I m posting this, StarterSTS is as the name implies a starter sts something to get you started on the world of Federeation Identity , claims and all that lovely [...]
Filed under: Uncategorized | Leave a Comment
Tags: Geneva, starter_sts, WIF
Ext Js bits
Just some interesting thing I found on the extjs world.
I m only looking at stuff working on ext3.0
In ExtJs the JsonStore has paramNames this Object contains 4 properties
{
start : ’start’, // The parameter name which specifies the start row
limit : ‘limit’, // The parameter name [...]
Filed under: Uncategorized | Leave a Comment
Thoughs on 1st Book Club meetup
The Art of Unit Testing (by Roy Osherove) First Meetup
Its amazing how much you can talk about just one chapter, ok we diverged at some point to related topics, we dreamed about our own Open Source project, again. Anyway, these are my thoughs about the first chapter, after the meeting
Integration testing and unit testing: I [...]
Filed under: unit-testing | Leave a Comment
Tags: StoryTeller, unit-testing
Search
-
You are currently browsing the roundcrisis.Find<Solution>() weblog archives for the Uncategorized category.