| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- namespace PhpOffice\PhpSpreadsheetTests\Cell;
- use PhpOffice\PhpSpreadsheet\Cell\Hyperlink;
- use PHPUnit\Framework\TestCase;
- class HyperlinkTest extends TestCase
- {
- public function testGetUrl(): void
- {
- $urlValue = 'https://www.example.com';
- $testInstance = new Hyperlink($urlValue);
- $result = $testInstance->getUrl();
- self::assertEquals($urlValue, $result);
- }
- public function testSetUrl(): void
- {
- $initialUrlValue = 'https://www.example.com';
- $newUrlValue = 'http://github.com/PHPOffice/PhpSpreadsheet';
- $testInstance = new Hyperlink($initialUrlValue);
- $result = $testInstance->setUrl($newUrlValue);
- self::assertInstanceOf(Hyperlink::class, $result);
- $result = $testInstance->getUrl();
- self::assertEquals($newUrlValue, $result);
- }
- public function testGetTooltip(): void
- {
- $tooltipValue = 'PhpSpreadsheet Web Site';
- $testInstance = new Hyperlink('', $tooltipValue);
- $result = $testInstance->getTooltip();
- self::assertEquals($tooltipValue, $result);
- }
- public function testSetTooltip(): void
- {
- $initialTooltipValue = 'PhpSpreadsheet Web Site';
- $newTooltipValue = 'PhpSpreadsheet Repository on Github';
- $testInstance = new Hyperlink('', $initialTooltipValue);
- $result = $testInstance->setTooltip($newTooltipValue);
- self::assertInstanceOf(Hyperlink::class, $result);
- $result = $testInstance->getTooltip();
- self::assertEquals($newTooltipValue, $result);
- }
- public function testIsInternal(): void
- {
- $initialUrlValue = 'https://www.example.com';
- $newUrlValue = 'sheet://Worksheet1!A1';
- $testInstance = new Hyperlink($initialUrlValue);
- $result = $testInstance->isInternal();
- self::assertFalse($result);
- $testInstance->setUrl($newUrlValue);
- $result = $testInstance->isInternal();
- self::assertTrue($result);
- }
- public function testGetHashCode(): void
- {
- $urlValue = 'https://www.example.com';
- $tooltipValue = 'PhpSpreadsheet Web Site';
- $initialExpectedHash = '3a8d5a682dba27276dce538c39402437';
- $testInstance = new Hyperlink($urlValue, $tooltipValue);
- $result = $testInstance->getHashCode();
- self::assertEquals($initialExpectedHash, $result);
- }
- }
|