<?php
/**
 * FIT Fixture: PrimitiveFixture
 * 
 * $Id$
 * 
 * @author gERD Schaufelberger <gerd@php-tools.net>
 * @package FIT
 * @subpackage Fixture
 * @license LGPL http://www.gnu.org/copyleft/lesser.html
 */

/**
 * FIT Fixture: PrimitiveFixture
 * 
 * A PrimitiveFixture is primitive in that it relies on fundamentals 
 * and is free of adornment. 
 * 
 * Actually, this class simply exists because the original implementation in Java 
 * used provided a so called PrimitiveFixture.  In case of the PHP implementation,
 * everything is in the base class Fixture, hence this class is empty
 *
 * @version 0.1.0
 * @package FIT
 * @subpackage Fixture
 */
class Testing_FIT_Fixture_Primitive extends Testing_FIT_Fixture 
{
}
?>