Completed
Push — master ( cb16cf...f129a6 )
by Tomáš
05:41
created

AsynchronousCommandProducerConfiguratorTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 15
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getConfigFile() 0 4 1
A getExpectedServiceName() 0 4 1
1
<?php declare(strict_types = 1);
2
3
namespace TomCizek\SymfonyProoph\Tests\AsynchronousMessages;
4
5
class AsynchronousCommandProducerConfiguratorTest extends AbstractAsynchronousProducerConfiguratorTestCase
6
{
7
	const FIXTURE_CONFIG_FILE = 'AsynchronousMessages/AsynchronousCommandProducerTest.yml';
8
	const EXPECTED_SERVICE_NAME = 'prooph.asynchronous_messaging.commands';
9
10
	protected function getConfigFile()
11
	{
12
		return self::FIXTURE_CONFIG_FILE;
13
	}
14
15
	protected function getExpectedServiceName()
16
	{
17
		return self::EXPECTED_SERVICE_NAME;
18
	}
19
}
20