Skip to content

Commit

Permalink
Test against accessors
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Aug 5, 2024
1 parent 5ba193a commit 5977b88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/framework/tests/Unit/Support/MediaFileUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ public function testConstructorWithVariousInputFormats()
public function testConstructorSetsProperties()
{
$file = new MediaFile('foo.txt');
$this->assertNotNull($file->length);
$this->assertNotNull($file->mimeType);
$this->assertNotNull($file->hash);
$this->assertNotNull($file->getContentLength());
$this->assertNotNull($file->getMimeType());
$this->assertNotNull($file->getHash());
}

public function testNormalizePathWithAbsolutePath()
Expand Down

0 comments on commit 5977b88

Please sign in to comment.