AwsInspector\Tests\Model\AbstractTest::matchesTagsReturnsFalseIfTagsAndFilterNotMatches PHP Method

matchesTagsReturnsFalseIfTagsAndFilterNotMatches() public method

    public function matchesTagsReturnsFalseIfTagsAndFilterNotMatches()
    {
        $data = ['Tags' => [['Key' => 'testKey', 'Value' => 'testValue'], ['Key' => 'testKey2', 'Value' => 'testValue2']]];
        $stub = $this->getMockForAbstractClass('\\AwsInspector\\Model\\AbstractResource', [$data]);
        $filter = ['xxx' => 'yyy'];
        $this->assertFalse($stub->matchesTags($filter));
    }