Some checks reported errors
continuous-integration/drone/push Build encountered an error
17 lines
No EOL
332 B
PHP
17 lines
No EOL
332 B
PHP
<?php
|
|
|
|
|
|
namespace CubiStore\Tests\Web\Utils;
|
|
|
|
|
|
use CubiStore\Web\Utils\ApkSignUtils;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ApkSignUtilsTest extends TestCase
|
|
{
|
|
function testSha1Signature()
|
|
{
|
|
$utils = new ApkSignUtils();
|
|
$utils->findSignature(__DIR__ . '/../../var/testdata/signedapks/apksignv2.apk');
|
|
}
|
|
} |