You are here

public function FeedsTamperConvertCaseTestCase::test in Feeds Tamper 6

Same name and namespace in other branches
  1. 7 tests/feeds_tamper_plugins.test \FeedsTamperConvertCaseTestCase::test()

File

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

Class

FeedsTamperConvertCaseTestCase
Tests for convert_case.inc

Code

public function test() {
  $this
    ->execute('asdfasdf', 'ASDFASDF', array(
    'mode' => MB_CASE_UPPER,
  ));
  $this
    ->execute('AsdFasdf', 'asdfasdf', array(
    'mode' => MB_CASE_LOWER,
  ));
  $this
    ->execute('asdfasdf', 'Asdfasdf', array(
    'mode' => MB_CASE_TITLE,
  ));
}