Skip to content
Snippets Groups Projects
Commit 96fda5a9 authored by Daniel Hürtgen's avatar Daniel Hürtgen
Browse files

FEATURE: Mark current finder test as integrational test

parent 3db8b9a2
Branches
Tags
2 merge requests!37Release 0.4.0,!32Implement PHPCodeSniffer Standards Finder Service
<?php
namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\Unit\PHPCodeSniffer\Standard;
namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\Integration\PHPCodeSniffer\Standard;
/*
* Copyright (C) 2017 Daniel Hürtgen <daniel@higidi.de>
......@@ -25,7 +25,7 @@ use Higidi\ComposerPhpCSStandardsPlugin\PHPCodeSniffer\Finder;
use Higidi\ComposerPhpCSStandardsPlugin\PHPCodeSniffer\StandardsFactory;
/**
* Test case for class \Higidi\ComposerPhpCSStandardsPlugin\PHPCodeSniffer\Finder
* Integration test case for class \Higidi\ComposerPhpCSStandardsPlugin\PHPCodeSniffer\Finder
*/
class FinderTest extends \PHPUnit_Framework_TestCase
{
......@@ -49,7 +49,7 @@ class FinderTest extends \PHPUnit_Framework_TestCase
'',
false
);
$this->fixture = new Finder($this->standardsFactoryMock);
$this->fixture = new Finder(null, $this->standardsFactoryMock);
}
protected function tearDown()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment