Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); namespace PhpOffice\PhpSpreadsheetTests\Calculation\Funct..
Decoded Output download
<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
use PhpOffice\PhpSpreadsheet\Calculation\Information\Value;
use PHPUnit\Framework\TestCase;
class NTest extends TestCase
{
public function testNNoArgument(): void
{
$result = Value::asNumber();
self::assertSame(0, $result);
}
/**
* @dataProvider providerN
*/
public function testN(mixed $expectedResult, mixed $value): void
{
$result = Value::asNumber($value);
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
}
public static function providerN(): array
{
return require 'tests/data/Calculation/Information/N.php';
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
use PhpOffice\PhpSpreadsheet\Calculation\Information\Value;
use PHPUnit\Framework\TestCase;
class NTest extends TestCase
{
public function testNNoArgument(): void
{
$result = Value::asNumber();
self::assertSame(0, $result);
}
/**
* @dataProvider providerN
*/
public function testN(mixed $expectedResult, mixed $value): void
{
$result = Value::asNumber($value);
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
}
public static function providerN(): array
{
return require 'tests/data/Calculation/Information/N.php';
}
}
Function Calls
None |
Stats
MD5 | 8eefbed3e68ea1236923942c3908b69b |
Eval Count | 0 |
Decode Time | 114 ms |