getTrack1() public method

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