Joe Walnes
  Blog



Recent Entries

New blog: http://joewalnes.com

Creative uses of Hamcrest matchers

Hamcrest 1.1 released

Testing on the Toilet

Building testable AJAX apps (Does my button look big in this?)

QDox is back - 1.6 released

Java and .NET RESTful interoperability with XStream

I've joined Google

OSCon: SiteMesh, SiteMesh, SiteMesh, SiteMesh

Flexible JUnit assertions with assertThat()

SiteMesh and Content Management @ O'Reilly OpenSource Conference

XStream 1.1.2 released. Java 5 Enums, JavaBeans, field aliasing, StAX, and more...

VB.Net is the bestest

XStream 1.1.1 released

Accessing generic type information at runtime

XStream 1.1 released

JUnit tip: Setting the default timezone with a TestDecorator

XStream: how to serialize objects to non XML formats

How my backflip went...

Backflippin' in 4 hours.

Is 100% test coverage a BAD thing?

Looking back at the SiteMesh HTML parser

The road ahead for SiteMesh 3

Joe's Backflipping for Autistic Research - time is nearly up...

SiteMesh 2.2 Released

More... [RSS | RDF]

About Joe Walnes

I am a software engineer for Google, based in London.

Open Source

WebStuff (coming soon)

XStream

ActiveMQ

SiteMesh

QDox

nMock

jMock

Pico Container

Nano Container

OpenSymphony

Squiggle

MockDoclet

MockObjects

Jelly

Groovy

PatternStitcher

XJB

Books

Java Open Source Programming, Wiley JSP Site Design, Wrox

Talks

Mock Roles, not Objects
October 26 2004, Vancouver, Canada. OOPSLA'04

Personal Development Practices Map
June 24 2004, Salt Lake City, Utah. Agile Development Conference

SiteMesh.NET and ASP.NET MasterPages
May 20 2004, Bangalore, India. Bangalore .NET User Group

Mock Objects: Driving Top Down Development
March 29 2004, St Neots, UK. OT2004

Mock Objects
December 2 2003, London, UK. XP Day 3


OT2004 : Generic Mechanisms in Software Engingeering

This workshop, hosted by Simon Davies, and chums from Microsoft (with a bit of Bruce Anderson), was a thinking excercise about the pros and cons of some of the language features of C# (and conveniently also Java) including generic types, attributes and dynamic code generation.

We were given some sample scenarios to which we had to contrast the approaches of using these features in isolation and combined together, taking into account ease of development, runtime performance, flexibility, maintainability and simplicity:
* Creating a strongly typed list.
* Serializing objects to XML (a subject I'm familiar with).
* CRUD persistence of domain objects to a database.

This was quite thought provoking. While it was very easy to see the advantages of using generics to implement a strongly typed list, experimenting with all the different approaches was a fun exercise. Code generation may be less simple but offers better runtime performance.

It was fun brainstorming ideas with developers from different backgrounds and seeing which approaches appealed to them.

I was also shown the anonymous delegate feature in the next version of C#. Mmmm closures...

// usage
int totalAge = 0;
peopleFinder.All(delegate(Person person) {
  totalAge += person.Age;
});

// implementation
class PersonFinder {
  
  public delegate PersonDelegate(Person person);
  
  public void All(PersonDelegate delegate) {
    some magic iteration code {
      Person person = ...;
      delegate(person);
    }
  }

}

Now for a staticly typed language, that's a lot cleaner than I was expecting.

This is something I'm really excited about as it's the style of development I use all the time in Java, without all the syntactic cruft of anonymous inner classes. And I'm sure it'll appeal to all the Ruby/Smalltalkers out there.

Something else I learned is that (unlike Java 1.5), generic definitions are available at runtime.

Plenty more info in the C# 2.0 specification.

Comments

exortech

btw, i think that anonymous delegates will be an excellent candidate for future versions of nmock. it will enable us to get rid of having to refer to method names as strings when setting up expectations. we can start treating methods as first-class objects (kinda).

Joe Walnes

Errmm how? We tried this with non-anonymous delegates for C# 1.0 and failed. Could you give an example?

One thing it would do though is supply a much more flexible way of specifiying constriants.

mock.Expect("DoSomething", delegate(params object[] args) { args[0] < 20 && args[1] != "foo"});

exortech

oops... reading through the c# docs i guess i misunderstood the intention of anonymous delegates.

my impression was that i could do something like this:

mock.expect(delegate(Foo), "hello");

void Foo(string message) {
...
}

but i guess you can't. bummer...

Jon Tirsen

Wow! Closures in C# 2.0! And it's really elegant!

Btw, I think it'd be better to do it the Ruby mock objects way, that is allow anything to be executed within the "constraint closure", that way you can reuse all the reporting niceties of Assert (or whatever favourite assertion utility you use). Like this:
mock.Expect("DoSomething", delegate(params object[] args) { Assert.IsTrue(args[0] < 20); Assert.AreEqual("foo", args[1]) };

Name:
Email:
URL:

ThoughtBloggers

Martin Fowler

Dan North

Aslak Hellesoy

Darren Hobbs

Geoff Oliphant

Mike Roberts

Chris Stevenson

Jon Tirsen

Loads More...

Agile Bloggers

Ken Arnold

Ward Cunningham

Brian Marick

Robert Martin

Bret Pettichord

Java Bloggers

Ara Abrahamian

Mike Cannon-Brookes

Vincent Massol

Bob McWhirter

Rickard Oberg

Joseph Ottinger

James Strachan

Hani Suleiman

Communities

eXtreme Tuesday Club (XTC)

Thursday GeekSpeek

ThoughtWorks GeekNight

London Java Meetup

The Codehaus

[RSS | RDF]
© 2001-2004, Joe Walnes

Powered by SiteMesh and Moveable Type.