public function FeedsTamperConvertCaseTestCase::test in Feeds Tamper 7        
                          
                  
                        Same name and namespace in other branches
- 6 tests/feeds_tamper_plugins.test \FeedsTamperConvertCaseTestCase::test()
File
 
   - tests/feeds_tamper_plugins.test, line 210
- 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,
  ));
}