/**
  * enables the creation of test data on /dev/build
  *
  * @return void
  *
  * @author Sebastian Diel <*****@*****.**>
  * @since 21.02.2011
  */
 public static function enableTestData()
 {
     SilvercartRequireDefaultRecords::enableTestData();
 }
 /**
  * disables the creation of test data on /dev/build. This is set by default,
  * so you do not have to disable creation of test data if it was not enabled
  * before.
  *
  * @return void
  *
  * @author Sebastian Diel <*****@*****.**>
  * @since 21.02.2011
  */
 public static function disableTestData()
 {
     self::$enableTestData = false;
 }