Skip to content

Commit 0624fae

Browse files
committed
Removed unnecessary test annotations.
1 parent 537f61c commit 0624fae

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tests/Money/Tests/CurrencyPairTest.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ public function ParsesIso()
4040
}
4141

4242
/**
43-
* @test
4443
* @expectedException \Money\InvalidArgumentException
4544
* @expectedExceptionMessage Can't create currency pair from ISO string '1.2500', format of string is invalid
4645
*/
@@ -50,7 +49,6 @@ public function ParsesIsoWithException()
5049
}
5150

5251
/**
53-
* @test
5452
* @expectedException \Money\InvalidArgumentException
5553
* @expectedExceptionMessage Ratio must be numeric
5654
* @dataProvider dataProviderNonNumericRatio
@@ -60,9 +58,6 @@ public function testConstructorWithNonNumericRatio($nonNumericRatio)
6058
new CurrencyPair(new Currency('EUR'), new Currency('USD'), $nonNumericRatio);
6159
}
6260

63-
/**
64-
* @test
65-
*/
6661
public function testGetRatio()
6762
{
6863
$ratio = 1.2500;
@@ -71,19 +66,13 @@ public function testGetRatio()
7166
$this->assertEquals($ratio, $pair->getRatio());
7267
}
7368

74-
/**
75-
* @test
76-
*/
7769
public function testGetBaseCurrency()
7870
{
7971
$pair = new CurrencyPair(new Currency('EUR'), new Currency('USD'), 1.2500);
8072

8173
$this->assertEquals(new Currency('EUR'), $pair->getBaseCurrency());
8274
}
8375

84-
/**
85-
* @test
86-
*/
8776
public function testGetCounterCurrency()
8877
{
8978
$pair = new CurrencyPair(new Currency('EUR'), new Currency('USD'), 1.2500);
@@ -92,7 +81,6 @@ public function testGetCounterCurrency()
9281
}
9382

9483
/**
95-
* @test
9684
* @expectedException \Money\InvalidArgumentException
9785
* @expectedExceptionMessage The Money has the wrong currency
9886
*/

0 commit comments

Comments
 (0)