Skip to content

Commit

Permalink
add trantime to StatementsResponseTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Spell6inder authored Apr 25, 2018
1 parent 5b38c89 commit b4d4bf5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tests/Response/StatementsResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ public function testSuccessfulResponse()
<oper>cmt</oper>
<info>
<statements status="excellent" credit="0.0" debet="0.3" >
<statement card="5168742060221193" appcode="591969" trandate="2013-09-02" amount="0.10 UAH" cardamount="-0.10 UAH" rest="0.95 UAH" terminal="Пополнение мобильного +380139917053 через «Приват24»" description="" />
<statement card="5168742060221193" appcode="991794" trandate="2013-09-02" amount="0.10 UAH" cardamount="-0.10 UAH" rest="1.05 UAH" terminal="Пополнение мобильного +380139917035 через «Приват24»" description="" />
<statement card="5168742060221193" appcode="801111" trandate="2013-09-02" amount="0.10 UAH" cardamount="-0.10 UAH" rest="1.15 UAH" terminal="Пополнение мобильного +380139910008 через «Приват24»" description="" />
<statement card="5168742060221193" appcode="591969" trandate="2013-09-02" trantime="13:29:00" amount="0.10 UAH" cardamount="-0.10 UAH" rest="0.95 UAH" terminal="Пополнение мобильного +380139917053 через «Приват24»" description="" />
<statement card="5168742060221193" appcode="991794" trandate="2013-09-02" trantime="13:29:00" amount="0.10 UAH" cardamount="-0.10 UAH" rest="1.05 UAH" terminal="Пополнение мобильного +380139917035 через «Приват24»" description="" />
<statement card="5168742060221193" appcode="801111" trandate="2013-09-02" trantime="13:29:00" amount="0.10 UAH" cardamount="-0.10 UAH" rest="1.15 UAH" terminal="Пополнение мобильного +380139910008 через «Приват24»" description="" />
</statements>
</info>
</data>
Expand All @@ -48,6 +48,7 @@ public function testSuccessfulResponse()
'card' => '5168742060221193',
'appcode' => '591969',
'trandate' => '2013-09-02',
'trantime' => '13:29:00',
'amount' => '0.10 UAH',
'cardamount' => '-0.10 UAH',
'rest' => '0.95 UAH',
Expand All @@ -57,6 +58,7 @@ public function testSuccessfulResponse()
'card' => '5168742060221193',
'appcode' => '991794',
'trandate' => '2013-09-02',
'trantime' => '13:29:00',
'amount' => '0.10 UAH',
'cardamount' => '-0.10 UAH',
'rest' => '1.05 UAH',
Expand All @@ -66,6 +68,7 @@ public function testSuccessfulResponse()
'card' => '5168742060221193',
'appcode' => '801111',
'trandate' => '2013-09-02',
'trantime' => '13:29:00',
'amount' => '0.10 UAH',
'cardamount' => '-0.10 UAH',
'rest' => '1.15 UAH',
Expand All @@ -74,4 +77,4 @@ public function testSuccessfulResponse()
]], $result);
}

}
}

0 comments on commit b4d4bf5

Please sign in to comment.