Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering where and when fluent interfaces are a good idea, so I am looking for examples. So far I have found only 3 useful cases, e.g. Ruby's collections, like

unique_words = File.read("words.txt").downcase.split.sort.uniq.length

and Fest (Java) for unit testing:

assertThat(yoda).isInstanceOf(Jedi.class)
    .isEqualTo(foundJedi)
    .isNotEqualTo(foundSith);

and JMock. Do you know of any other good examples that use a fluent interface?

share|improve this question

4 Answers

up vote 3 down vote accepted

jQuery. :)

share|improve this answer
5  
My Dog! jQuery IS always the answer! – Kawa Jul 25 '09 at 18:50

StringBuilder: http://msdn.microsoft.com/en-us/library/system.text.stringbuilder(VS.71).aspx Or

share|improve this answer

RSpec. Example from the home page:

# bowling_spec.rb
require 'bowling'

describe Bowling do
  before(:each) do
    @bowling = Bowling.new
  end

  it "should score 0 for gutter game" do
    20.times { @bowling.hit(0) }
    @bowling.score.should == 0
  end
end
share|improve this answer
  1. Ninject: http://www.ninject.org
  2. For an example that doesn't come from general-purpose libraries, I built an automated regression suite for a configuration wizard. I created a state machine that fills in values on a wizard page, verifies those values are acceptable, then moves on to the next page. The code for each step in the state machine looks like:

    step.Filler().Fill().Verify().GoForward();

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.