Skip to content

Commit

Permalink
Don't Test Deprecated Methods
Browse files Browse the repository at this point in the history
  • Loading branch information
zanbaldwin committed Apr 2, 2024
1 parent 5128ad0 commit ddce3a4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 60 deletions.
20 changes: 0 additions & 20 deletions tests/Doctrine/IPv4TypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,6 @@ public function testNullConversionForPHPValue()
$this->assertNull($this->type->convertToPHPValue(null, $this->platform));
}

/**
* @test
* @return void
*/
#[PHPUnit\Test]
public function testGetName()
{
$this->assertEquals('ip', $this->type->getName());
}

/**
* @test
* @return void
Expand Down Expand Up @@ -190,14 +180,4 @@ public function testBindingTypeIsAValidPDOTypeConstant()
// PDO PARAM constant.
$this->assertContains($this->type->getBindingType(), $paramConstants);
}

/**
* @test
* @return void
*/
#[PHPUnit\Test]
public function testRequiresSQLCommentHint()
{
$this->assertTrue($this->type->requiresSQLCommentHint($this->platform));
}
}
20 changes: 0 additions & 20 deletions tests/Doctrine/IPv6TypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,6 @@ public function testNullConversionForPHPValue()
$this->assertNull($this->type->convertToPHPValue(null, $this->platform));
}

/**
* @test
* @return void
*/
#[PHPUnit\Test]
public function testGetName()
{
$this->assertEquals('ip', $this->type->getName());
}

/**
* @test
* @return void
Expand Down Expand Up @@ -190,14 +180,4 @@ public function testBindingTypeIsAValidPDOTypeConstant()
// PDO PARAM constant.
$this->assertContains($this->type->getBindingType(), $paramConstants);
}

/**
* @test
* @return void
*/
#[PHPUnit\Test]
public function testRequiresSQLCommentHint()
{
$this->assertTrue($this->type->requiresSQLCommentHint($this->platform));
}
}
20 changes: 0 additions & 20 deletions tests/Doctrine/MultiTypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,6 @@ public function testNullConversionForPHPValue()
$this->assertNull($this->type->convertToPHPValue(null, $this->platform));
}

/**
* @test
* @return void
*/
#[PHPUnit\Test]
public function testGetName()
{
$this->assertEquals('ip', $this->type->getName());
}

/**
* @test
* @return void
Expand Down Expand Up @@ -190,14 +180,4 @@ public function testBindingTypeIsAValidPDOTypeConstant()
// PDO PARAM constant.
$this->assertContains($this->type->getBindingType(), $paramConstants);
}

/**
* @test
* @return void
*/
#[PHPUnit\Test]
public function testRequiresSQLCommentHint()
{
$this->assertTrue($this->type->requiresSQLCommentHint($this->platform));
}
}

0 comments on commit ddce3a4

Please sign in to comment.