getTrack2() public method

Get raw data for track 2 on the credit card magnetic strip.
public getTrack2 ( ) : string
return string
Esempio n. 1
0
 public function testShouldReturnTrack2()
 {
     $this->card->setTracks('%B4242424242424242^SMITH/JOHN ^1520126100000000000000444000000?;4242424242424242=15201269999944401?');
     $actual = $this->card->getTrack2();
     $this->assertEquals(';4242424242424242=15201269999944401?', $actual);
 }