File tree Expand file tree Collapse file tree 6 files changed +27
-0
lines changed Expand file tree Collapse file tree 6 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ public function testShouldImplementConnectionFactoryInterface()
17
17
$ this ->assertClassImplements (ConnectionFactory::class, NullConnectionFactory::class);
18
18
}
19
19
20
+ /**
21
+ * @doesNotPerformAssertions
22
+ */
20
23
public function testCouldBeConstructedWithoutAnyArguments ()
21
24
{
22
25
new NullConnectionFactory ();
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ public function testShouldImplementMessageConsumerInterface()
18
18
$ this ->assertClassImplements (Consumer::class, NullConsumer::class);
19
19
}
20
20
21
+ /**
22
+ * @doesNotPerformAssertions
23
+ */
21
24
public function testCouldBeConstructedWithQueueAsArgument ()
22
25
{
23
26
new NullConsumer (new NullQueue ('aName ' ));
@@ -41,13 +44,19 @@ public function testShouldAlwaysReturnNullOnReceiveNoWait()
41
44
$ this ->assertNull ($ consumer ->receiveNoWait ());
42
45
}
43
46
47
+ /**
48
+ * @doesNotPerformAssertions
49
+ */
44
50
public function testShouldDoNothingOnAcknowledge ()
45
51
{
46
52
$ consumer = new NullConsumer (new NullQueue ('theQueueName ' ));
47
53
48
54
$ consumer ->acknowledge (new NullMessage ());
49
55
}
50
56
57
+ /**
58
+ * @doesNotPerformAssertions
59
+ */
51
60
public function testShouldDoNothingOnReject ()
52
61
{
53
62
$ consumer = new NullConsumer (new NullQueue ('theQueueName ' ));
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ public function testShouldImplementSessionInterface()
21
21
$ this ->assertClassImplements (Context::class, NullContext::class);
22
22
}
23
23
24
+ /**
25
+ * @doesNotPerformAssertions
26
+ */
24
27
public function testCouldBeConstructedWithoutAnyArguments ()
25
28
{
26
29
new NullContext ();
Original file line number Diff line number Diff line change @@ -18,11 +18,17 @@ public function testShouldImplementProducerInterface()
18
18
$ this ->assertClassImplements (Producer::class, NullProducer::class);
19
19
}
20
20
21
+ /**
22
+ * @doesNotPerformAssertions
23
+ */
21
24
public function testCouldBeConstructedWithoutAnyArguments ()
22
25
{
23
26
new NullProducer ();
24
27
}
25
28
29
+ /**
30
+ * @doesNotPerformAssertions
31
+ */
26
32
public function testShouldDoNothingOnSend ()
27
33
{
28
34
$ producer = new NullProducer ();
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ public function testShouldImplementQueueInterface()
16
16
$ this ->assertClassImplements (Queue::class, NullQueue::class);
17
17
}
18
18
19
+ /**
20
+ * @doesNotPerformAssertions
21
+ */
19
22
public function testCouldBeConstructedWithNameAsArgument ()
20
23
{
21
24
new NullQueue ('aName ' );
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ public function testShouldImplementTopicInterface()
16
16
$ this ->assertClassImplements (Topic::class, NullTopic::class);
17
17
}
18
18
19
+ /**
20
+ * @doesNotPerformAssertions
21
+ */
19
22
public function testCouldBeConstructedWithNameAsArgument ()
20
23
{
21
24
new NullTopic ('aName ' );
You can’t perform that action at this time.
0 commit comments