PHP Classes

File: tests/EncoderTest.php

Recommend this page to a friend!
  Classes of Nathan Bishop   PHP Encoder   tests/EncoderTest.php   Download  
File: tests/EncoderTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: PHP Encoder
Encode and decode email with quoted-printable
Author: By
Last change: Update of tests/EncoderTest.php
Date: 2 months ago
Size: 524 bytes
 

Contents

Class file image Download
<?php

class EncoderTest extends PHPUnit_Framework_TestCase
{
    private
$encoder;
   
   
/**
     * Setup the test environment.
     */
   
public function setUp()
    {
       
$this->encoder = new Encoder;
    }
   
   
/**
     * Tear down the test environment.
     */
   
public function tearDown()
    {
       
$this->encoder = null;
    }
   
   
/**
     * Test instance of $this->encoder;
     */
   
public function testInstanceOf()
    {
       
$this->assertInstanceOf('Encoder', $this->encoder);
    }
}