Ejemplo n.º 1
0
 /** @test */
 public function it_calls_collaborators_from_a_convenience_constructor()
 {
     $client = ClientObject::withName("Client Name");
     $test = new TestIdentity();
     $this->assertTrue($client->productA()->identification()['number'] == $test->id());
     $this->assertTrue($client->partB()->number() == $test->id());
 }