PHP Classes

File: tests/classes/table/ZelleTest.php

Recommend this page to a friend!
  Classes of stefan   PHP XML Converter   tests/classes/table/ZelleTest.php   Download  
File: tests/classes/table/ZelleTest.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP XML Converter
Transform Indesign to eBundesanzeiger XML format
Author: By
Last change:
Date: 1 year ago
Size: 3,121 bytes
 

Contents

Class file image Download
<?php

require_once '/var/www/html/xml_generator/classes/table/Zelle.php';

/**
 * Test class for Zelle.
 * Generated by PHPUnit on 2015-05-25 at 00:05:56.
 */
class ZelleTest extends PHPUnit_Framework_TestCase
{
   
/**
     * @var Zelle
     */
   
protected $object;

   
/**
     * Sets up the fixture, for example, opens a network connection.
     * This method is called before a test is executed.
     */
   
protected function setUp()
    {
       
$this->object = new Zelle;
    }

   
/**
     * Tears down the fixture, for example, closes a network connection.
     * This method is called after a test is executed.
     */
   
protected function tearDown()
    {
    }

   
/**
     * @todo Implement testSetCell().
     */
   
public function testSetCell()
    {
       
// Remove the following lines when you implement this test.
       
$this->markTestIncomplete(
         
'This test has not been implemented yet.'
       
);
    }

   
/**
     * @todo Implement testSetAlign().
     */
   
public function testSetAlign()
    {
       
// Remove the following lines when you implement this test.
       
$this->markTestIncomplete(
         
'This test has not been implemented yet.'
       
);
    }

   
/**
     * @todo Implement testSetRowspan().
     */
   
public function testSetRowspan()
    {
       
// Remove the following lines when you implement this test.
       
$this->markTestIncomplete(
         
'This test has not been implemented yet.'
       
);
    }

   
/**
     * @todo Implement testSetColspan().
     */
   
public function testSetColspan()
    {
       
// Remove the following lines when you implement this test.
       
$this->markTestIncomplete(
         
'This test has not been implemented yet.'
       
);
    }

   
/**
     * @todo Implement testSetValue().
     */
   
public function testSetValue()
    {
       
// Remove the following lines when you implement this test.
       
$this->markTestIncomplete(
         
'This test has not been implemented yet.'
       
);
    }

   
/**
     * @todo Implement testGetAlign().
     */
   
public function testGetAlign()
    {
       
// Remove the following lines when you implement this test.
       
$this->markTestIncomplete(
         
'This test has not been implemented yet.'
       
);
    }

   
/**
     * @todo Implement testGetColspan().
     */
   
public function testGetColspan()
    {
       
// Remove the following lines when you implement this test.
       
$this->markTestIncomplete(
         
'This test has not been implemented yet.'
       
);
    }

   
/**
     * @todo Implement testGetRowspan().
     */
   
public function testGetRowspan()
    {
       
// Remove the following lines when you implement this test.
       
$this->markTestIncomplete(
         
'This test has not been implemented yet.'
       
);
    }

   
/**
     * @todo Implement testGetValue().
     */
   
public function testGetValue()
    {
       
// Remove the following lines when you implement this test.
       
$this->markTestIncomplete(
         
'This test has not been implemented yet.'
       
);
    }
}
?>