Skip to content

Commit

Permalink
added test to make codecov happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mringler committed Dec 1, 2023
1 parent bcc11ed commit 0d1a444
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/Propel/Tests/Generator/Platform/DefaultPlatformTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,12 @@ public function testGetColumnBindingPHP($column, $default)
{
$this->assertStringContainsString($default, $this->getPlatform()->getColumnBindingPHP($column, 'ID', 'ACCESSOR'));
}

/**
* @return void
*/
public function testDoesNotSupportNativeOnDeleteTriggers()
{
$this->assertFalse($this->getPlatform()->supportsNativeDeleteTrigger());
}
}

0 comments on commit 0d1a444

Please sign in to comment.