File tree Expand file tree Collapse file tree 6 files changed +0
-48
lines changed Expand file tree Collapse file tree 6 files changed +0
-48
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,6 @@ public function testShouldImplementConnectionFactoryInterface()
17
17
$ this ->assertClassImplements (ConnectionFactory::class, NullConnectionFactory::class);
18
18
}
19
19
20
- /**
21
- * @doesNotPerformAssertions
22
- */
23
- public function testCouldBeConstructedWithoutAnyArguments ()
24
- {
25
- new NullConnectionFactory ();
26
- }
27
-
28
20
public function testShouldReturnNullContextOnCreateContextCall ()
29
21
{
30
22
$ factory = new NullConnectionFactory ();
Original file line number Diff line number Diff line change @@ -18,14 +18,6 @@ public function testShouldImplementMessageConsumerInterface()
18
18
$ this ->assertClassImplements (Consumer::class, NullConsumer::class);
19
19
}
20
20
21
- /**
22
- * @doesNotPerformAssertions
23
- */
24
- public function testCouldBeConstructedWithQueueAsArgument ()
25
- {
26
- new NullConsumer (new NullQueue ('aName ' ));
27
- }
28
-
29
21
public function testShouldAlwaysReturnNullOnReceive ()
30
22
{
31
23
$ consumer = new NullConsumer (new NullQueue ('theQueueName ' ));
Original file line number Diff line number Diff line change @@ -21,14 +21,6 @@ public function testShouldImplementSessionInterface()
21
21
$ this ->assertClassImplements (Context::class, NullContext::class);
22
22
}
23
23
24
- /**
25
- * @doesNotPerformAssertions
26
- */
27
- public function testCouldBeConstructedWithoutAnyArguments ()
28
- {
29
- new NullContext ();
30
- }
31
-
32
24
public function testShouldAllowCreateMessageWithoutAnyArguments ()
33
25
{
34
26
$ context = new NullContext ();
Original file line number Diff line number Diff line change @@ -18,14 +18,6 @@ public function testShouldImplementProducerInterface()
18
18
$ this ->assertClassImplements (Producer::class, NullProducer::class);
19
19
}
20
20
21
- /**
22
- * @doesNotPerformAssertions
23
- */
24
- public function testCouldBeConstructedWithoutAnyArguments ()
25
- {
26
- new NullProducer ();
27
- }
28
-
29
21
/**
30
22
* @doesNotPerformAssertions
31
23
*/
Original file line number Diff line number Diff line change @@ -16,14 +16,6 @@ public function testShouldImplementQueueInterface()
16
16
$ this ->assertClassImplements (Queue::class, NullQueue::class);
17
17
}
18
18
19
- /**
20
- * @doesNotPerformAssertions
21
- */
22
- public function testCouldBeConstructedWithNameAsArgument ()
23
- {
24
- new NullQueue ('aName ' );
25
- }
26
-
27
19
public function testShouldAllowGetNameSetInConstructor ()
28
20
{
29
21
$ queue = new NullQueue ('theName ' );
Original file line number Diff line number Diff line change @@ -16,14 +16,6 @@ public function testShouldImplementTopicInterface()
16
16
$ this ->assertClassImplements (Topic::class, NullTopic::class);
17
17
}
18
18
19
- /**
20
- * @doesNotPerformAssertions
21
- */
22
- public function testCouldBeConstructedWithNameAsArgument ()
23
- {
24
- new NullTopic ('aName ' );
25
- }
26
-
27
19
public function testShouldAllowGetNameSetInConstructor ()
28
20
{
29
21
$ topic = new NullTopic ('theName ' );
You can’t perform that action at this time.
0 commit comments