<?php require_once "BDL_Test_Supplier.php"; /** * @backupGlobals disabled * @backupStaticAttributes disabled */ class BDL_Test_Supplier_data extends BDL_Test_Supplier { /** * Return fixture data set for current database connection. * * @access protected * @return PHPUnit_Extensions_Database_DataSet_IDataSet * @todo Parameterise the fixture filename. */ protected function getDataSet() { return $this->createXMLDataSet( TEST_CLASS_PATH . '/Supplier/BDL_Fixture_Supplier.xml' ); } /** * Return whether or not the fixture should be loaded. * * @return boolean */ protected function willLoadFixture() { return true; } /** * @dataProvider provideColumnLegalValues */ public function testColumnLegalValue( $columnName, $legalValue ) { $this->assertColumnLegalValue( $columnName, $legalValue ); } // TODO: test for email constraints? } ?>