Skip to content

Commit

Permalink
[tests] CAB format tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raulfraile committed Sep 5, 2014
1 parent f2b7ce0 commit 211cd9b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions tests/Distill/Tests/Format/CabTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

namespace Distill\Tests\Format;

use Distill\Format\Cab;

class CabTest extends AbstractFormatTest
{

public function setUp()
{
$this->format = new Cab();
}

public function testCompressionRatioLevelIsValid()
{
$this->assertLevelValid($this->format->getCompressionRatioLevel());
}

public function testCompressionSpeedLevelIsValid()
{
$this->assertLevelValid($this->format->getCompressionSpeedLevel());
}

public function testUncompressionSpeedLevelIsValid()
{
$this->assertLevelValid($this->format->getUncompressionSpeedLevel());
}

}

0 comments on commit 211cd9b

Please sign in to comment.