for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Funivan\CabbageCore\Int\IntObject;
use PHPUnit\Framework\TestCase;
class IntObjectTest extends TestCase
{
public function testValue(): void
self::assertSame(
1,
(new IntObject(1))->value()
);
}