if I have
function let(Foo bar)
{
$this->beConstructedWith($bar);
}
it works great, but how do I actually pass arguments to the construct? It only works if I have a construct with no arguments passed to it, and use setters after construction. Isn't there a way to construct normally?
I've tried looking this up but all examples use constructs without arguments. Thanks.
You are already passing an arguement to your constructor by using $this->beConstrutedWith($bar)
The first example that you run, using a method from your SUT, will cause the constructor of the class to be called with $bar:
Here is the most up-to-date documenation on let() http://phpspec.readthedocs.org/en/latest/cookbook/construction.html#using-the-constructor: