Skip to content

Commit 341d43b

Browse files
committed
QA: Unify @test references
1 parent 8d4b966 commit 341d43b

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/php/io/streams/BufferedInputStream.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Buffered InputStream
88
*
9-
* @test net.xp_framework.unittest.io.streams.BufferedInputStreamTest
9+
* @test io.unittest.BufferedInputStreamTest
1010
*/
1111
class BufferedInputStream implements InputStream, Value {
1212
use Comparison;

src/main/php/io/streams/BufferedOutputStream.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* results internally. This means not every single byte passed to
99
* write() will be written.
1010
*
11-
* @test net.xp_framework.unittest.io.streams.BufferedOutputStreamTest
11+
* @test io.unittest.BufferedOutputStreamTest
1212
*/
1313
class BufferedOutputStream implements OutputStream, Value {
1414
use Comparison;

src/main/php/io/streams/ChannelInputStream.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
* Input stream that reads from one of the "stdin", "input" channels
99
* provided as PHP input/output streams.
1010
*
11-
* @test net.xp_framework.unittest.io.streams.ChannelStreamTest
1211
* @see php://wrappers
1312
* @see io.streams.ChannelOutputStream
13+
* @test io.unittest.ChannelStreamTest
1414
*/
1515
class ChannelInputStream implements InputStream, Value {
1616
use Comparison;

src/main/php/io/streams/ChannelOutputStream.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
* Output stream that writes to one of the "stdout", "stderr", "output"
99
* channels provided as PHP input/output streams.
1010
*
11-
* @test net.xp_framework.unittest.io.streams.ChannelStreamTest
1211
* @see php://wrappers
1312
* @see io.streams.ChannelInputStream
13+
* @test io.unittest.ChannelStreamTest
1414
*/
1515
class ChannelOutputStream implements OutputStream, Value {
1616
use Comparison;

src/main/php/io/streams/StreamTransfer.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* $t->close();
1717
* ```
1818
*
19-
* @test net.xp_framework.unittest.io.streams.StreamTransferTest
19+
* @test io.unittest.StreamTransferTest
2020
*/
2121
class StreamTransfer implements Closeable {
2222
protected $in, $out;

0 commit comments

Comments
 (0)