You are here

FeedsExTestUi.inc in Feeds extensible parsers 7

Same filename and directory in other branches
  1. 7.2 tests/FeedsExTestUi.inc

Contains FeedsExTestUi.

File

tests/FeedsExTestUi.inc
View source
<?php

/**
 * @file
 * Contains FeedsExTestUi.
 */

/**
 * A minimal implementation of a parser for UI testing.
 */
class FeedsExTestUi extends FeedsExBase {

  /**
   * {@inheritdoc}
   */
  protected function executeContext(FeedsSource $source, FeedsFetcherResult $fetcher_result) {
    return array();
  }

  /**
   * {@inheritdoc}
   */
  protected function executeSourceExpression($machine_name, $expression, $row) {
  }

  /**
   * {@inheritdoc}
   */
  protected function validateExpression(&$expression) {
  }

  /**
   * {@inheritdoc}
   */
  protected function getErrors() {
    return array();
  }

}

Classes

Namesort descending Description
FeedsExTestUi A minimal implementation of a parser for UI testing.