VuFind API Documentation

CopyStringCommandTest extends TestCase
in package
Uses FixtureTrait

Language/CopyString command test.

Tags
category

VuFind

author

Demian Katz demian.katz@villanova.edu

license

http://opensource.org/licenses/gpl-2.0.php GNU General Public License

link

Wiki

Table of Contents

$languageFixtureDir  : string
Language fixture directory
setUp()  : void
Standard setup method.
testFailureWithMissingTextDomain()  : void
Test failure due to missing text domain.
testSuccessWithMinimalParameters()  : void
Test the simplest possible success case.
testSuccessWithReplaceOptionAndCustomDelimiter()  : void
Test success with the replace and replaceDelimiter options set.
testSuccessWithReplaceOptionAndDefaultDelimiter()  : void
Test success with the replace option set.
testWithoutParameters()  : void
Test that missing parameters yield an error message.
getFixture()  : string
Load a fixture file.
getFixtureDir()  : string
Get the base directory containing fixtures.
getFixturePath()  : string
Resolve fixture path.
getJsonFixture()  : array<string|int, mixed>
Load a JSON fixture from file (using associative array return type).
getMockCommand()  : CopyStringCommand
Get a mock command object
getMockNormalizer()  : ExtendedIniNormalizer
Get a mock normalizer object
getMockReader()  : ExtendedIniReader
Get a mock reader object
getSuccessfulMockCommand()  : CopyStringCommand
Get a command mock with expectations of success.

Properties

Methods

testFailureWithMissingTextDomain()

Test failure due to missing text domain.

public testFailureWithMissingTextDomain() : void
Return values
void

testSuccessWithMinimalParameters()

Test the simplest possible success case.

public testSuccessWithMinimalParameters() : void
Return values
void

testSuccessWithReplaceOptionAndCustomDelimiter()

Test success with the replace and replaceDelimiter options set.

public testSuccessWithReplaceOptionAndCustomDelimiter() : void
Return values
void

testSuccessWithReplaceOptionAndDefaultDelimiter()

Test success with the replace option set.

public testSuccessWithReplaceOptionAndDefaultDelimiter() : void
Return values
void

testWithoutParameters()

Test that missing parameters yield an error message.

public testWithoutParameters() : void
Return values
void

getFixture()

Load a fixture file.

protected getFixture(string $filename[, string $module = 'VuFind' ]) : string
Parameters
$filename : string

Filename relative to fixture directory.

$module : string = 'VuFind'

Module containing fixture.

Tags
throws
RuntimeException
Return values
string

getFixtureDir()

Get the base directory containing fixtures.

protected getFixtureDir([string $module = 'VuFind' ]) : string
Parameters
$module : string = 'VuFind'

Module containing fixture.

Return values
string

getFixturePath()

Resolve fixture path.

protected getFixturePath(string $filename[, string $module = 'VuFind' ]) : string
Parameters
$filename : string

Filename relative to fixture directory.

$module : string = 'VuFind'

Module containing fixture.

Tags
throws
RuntimeException
Return values
string

getJsonFixture()

Load a JSON fixture from file (using associative array return type).

protected getJsonFixture(string $filename[, string $module = 'VuFind' ]) : array<string|int, mixed>
Parameters
$filename : string

Filename relative to fixture directory.

$module : string = 'VuFind'

Module containing fixture.

Return values
array<string|int, mixed>

getMockCommand()

Get a mock command object

protected getMockCommand([ExtendedIniNormalizer $normalizer = null ][, ExtendedIniReader $reader = null ][, string $languageDir = null ][, array<string|int, mixed> $methods = ['addLineToFile'] ]) : CopyStringCommand
Parameters
$normalizer : ExtendedIniNormalizer = null

Normalizer for .ini files

$reader : ExtendedIniReader = null

Reader for .ini files

$languageDir : string = null

Base language file directory

$methods : array<string|int, mixed> = ['addLineToFile']

Methods to mock

Return values
CopyStringCommand

getSuccessfulMockCommand()

Get a command mock with expectations of success.

protected getSuccessfulMockCommand([string $expectedString = 'baz' ]) : CopyStringCommand
Parameters
$expectedString : string = 'baz'

The expected output string of the process.

Return values
CopyStringCommand

Search results