You are here

protected function FeedsTamperArrayFilterTestCase::executeFilter in Feeds Tamper 7

Same name and namespace in other branches
  1. 6 tests/feeds_tamper_plugins.test \FeedsTamperArrayFilterTestCase::executeFilter()
1 call to FeedsTamperArrayFilterTestCase::executeFilter()
FeedsTamperArrayFilterTestCase::test in tests/feeds_tamper_plugins.test

File

tests/feeds_tamper_plugins.test, line 108
Unit tests for feeds tamper plugins.

Class

FeedsTamperArrayFilterTestCase
Tests for array_filter.inc

Code

protected function executeFilter($in_array, $out_array) {
  $this
    ->callback(NULL, NULL, NULL, $in_array);
  $this
    ->assertEqual($in_array, $out_array);
}