web/tests/Utils/ApkSignUtilsTest.php
eater 0950740480
Some checks reported errors
continuous-integration/drone/push Build encountered an error
few updates
2019-11-23 23:35:34 +01:00

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');
}
}