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…
Continuations – Jetty – Confluence
Continuations – Jetty – Confluence
Nothing can be more interesting than to read this article.
ThoughtWorks Experience
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!
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.
