16 Aug 2006, 10:35am
Uncategorized:
by toni

3 comments

Thoughtworks experience (II)

They’re coming back with an offer, I’ll be a Thoughtworker!!! :-)

Actually the second italian worldwide after Marco Abis

I’m so happy that I have no words…

11 Aug 2006, 10:58am
work:
by toni

leave a comment

Continuations – Jetty – Confluence

Continuations – Jetty – Confluence

Nothing can be more interesting than to read this article.

11 Aug 2006, 10:28am
Uncategorized:
by toni

1 comment

ThoughtWorks Experience


08082006

Originally uploaded by aterreno.

I’ve tried to apply to TW UK.
I’m still waiting for the final response but was a strong, great, cool experience.
I had many Interviews and every talk was always learning something, was always to talk with wonderful people.
No company in the world right now looks so good for me!

3 Aug 2006, 3:50pm
Uncategorized:
by toni

leave a comment

XmlUnit

<XmlUnit/>
XMLUnit – JUnit and NUnit testing for XML

For those of you who’ve got into it you’ll know that test driven development is great. It gives you the confidence to change code safe in the knowledge that if something breaks you’ll know about it. Except for those bits you don’t know how to test. Until now XML has been one of them. Oh sure you can use “<stuff></stuff>”.equals(“<stuff></stuff>”); but is that really gonna work when some joker decides to output a <stuff/>? — damned right it’s not ;-)

XML can be used for just about anything so deciding if two documents are equal to each other isn’t as easy as a character for character match. Sometimes

<stuff-doc>
<stuff>
Stuff Stuff Stuff
</stuff>
<more-stuff>
Some More Stuff
</more-stuff>
</stuff-doc>

equals

<stuff-doc>
<more-stuff>
Some More Stuff</more-stuff>
<stuff>Stuff Stuff Stuff</stuff>
</stuff-doc>

and sometimes it doesn’t… With XMLUnit you get the control, and you get to decide.