Entry 4837

Unit Tester

   

Submitted by anonymous on June 15, 2010 at 12:07 p.m.
Language: PHP. Code size: 396 bytes.

<?php
class FileTestCase extends UnitTestCase {
  function FileTestCase() {
      $this->UnitTestCase('File test');
  }
  
  function setUp() {
      @unlink('../temp/test.txt');
  }
  
  function testCreation() {
      $writer = &new FileWriter('../temp/test.txt');
      $writer->write('Hello');
      $this->assertTrue(file_exists('../temp/test.txt'), 'File created');
  }
}
?>

This snippet took 0.00 seconds to highlight.

Back to the Entry List or Home.

Delete this entry (admin only).