Code Duplication    Length = 7-7 lines in 2 locations

lib/custom/tests/MW/View/Helper/Request/FlowTest.php 2 locations

@@ 54-60 (lines=7) @@
51
	}
52
53
54
	public function testGetBody()
55
	{
56
		$this->mock->expects( $this->once() )->method( 'getContent' )
57
			->will( $this->returnValue( 'body' ) );
58
59
		$this->assertEquals( 'body', $this->object->transform()->getBody() );
60
	}
61
62
63
	public function testGetClientAddress()
@@ 63-69 (lines=7) @@
60
	}
61
62
63
	public function testGetClientAddress()
64
	{
65
		$this->mock->expects( $this->once() )->method( 'getClientIpAddress' )
66
			->will( $this->returnValue( '127.0.0.1' ) );
67
68
		$this->assertEquals( '127.0.0.1', $this->object->transform()->getClientAddress() );
69
	}
70
71
72
	public function testGetTarget()