public function it_is_not_supportable(RuleSubjectInterface $subject, RuleApplicatorInterface $applicator)
 {
     $applicator->isSupported($subject)->willReturn(false);
     $this->addApplicator($applicator);
     $subject->getSubjectType()->willReturn('article');
     $this->isSupported($subject)->shouldReturn(false);
 }