You are here

public function FeedsTamperArrayFilterTestCase::executeFilter in Feeds Tamper 6

Same name and namespace in other branches
  1. 7 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 96
Unit tests for feeds tamper plugins.

Class

FeedsTamperArrayFilterTestCase
Tests for array_filter.inc

Code

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