Skip to content

Commit

Permalink
Test added methods
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorprogger committed Dec 23, 2023
1 parent b16f61a commit 0c30b15
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/Common/AbstractMigrationBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,21 @@ public function testTinyInteger(): void
$this->assertSame('tinyint', $this->builder->tinyInteger()->asString());
}

public function testUuid(): void
{
$this->assertSame('uuid', $this->builder->uuid()->asString());
}

public function testUuidPrimaryKey(): void
{
$this->assertSame('uuid_pk', $this->builder->uuidPrimaryKey()->asString());
}

public function testUuidPrimaryKeySequenced(): void
{
$this->assertSame('uuid_pk_seq', $this->builder->uuidPrimaryKeySequenced()->asString());
}

public function testGetDb(): void
{
$this->assertSame($this->db, $this->builder->getDb());
Expand Down

0 comments on commit 0c30b15

Please sign in to comment.