Example #1
0
 function its_constructor_allows_a_list_of_engines(EngineInterface $engine)
 {
     $this->beConstructedWith(array($engine));
     $engine->supports('string1', 'string2')->willReturn(true);
     $engine->compare('string1', 'string2')->willReturn('string1 !== string2');
     $this->compare('string1', 'string2')->shouldReturn('string1 !== string2');
 }
Example #2
0
 function it_chooses_proper_engine_based_on_values(EngineInterface $engine1, EngineInterface $engine2)
 {
     $engine1->supports('string1', 'string2')->willReturn(true);
     $engine2->supports('string1', 'string2')->willReturn(false);
     $engine1->compare('string1', 'string2')->willReturn('string1 !== string2');
     $engine1->supports(2, 1)->willReturn(false);
     $engine2->supports(2, 1)->willReturn(true);
     $engine2->compare(2, 1)->willReturn('2 !== 1');
     $this->addEngine($engine1);
     $this->addEngine($engine2);
     $this->compare('string1', 'string2')->shouldReturn('string1 !== string2');
     $this->compare(2, 1)->shouldReturn('2 !== 1');
 }