blob: 0b47343d7afc56938b2276f3b3c4a8e2a9c7252c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<?php
namespace Nubs\RandomNameGenerator;
use PHPUnit_Framework_TestCase;
use Cinam\Randomizer\Randomizer;
/**
* @coversDefaultClass \Nubs\RandomNameGenerator\Alliteration
* @covers ::<protected>
*/
class AlliterationTest extends PHPUnit_Framework_TestCase
{
/**
* Verify basic behavior of getName().
*
* @test
* @covers ::__construct
* @covers ::getName
*
* @return void
*/
public function getNameBasic()
{
$generator = new Alliteration();
$parts = explode(' ', $generator->getName());
$this->assertSame(2, count($parts));
$this->assertSame($parts[0][0], $parts[1][0]);
}
/**
* Verify basic behavior of getName() with a forced random generator.
*
* @test
* @covers ::__construct
* @covers ::getName
*
* @return void
*/
public function getNameForced()
{
$numberGenerator = $this->createMock('\Cinam\Randomizer\NumberGenerator');
$numberGenerator->expects($this->exactly(2))->method('getInt')->will($this->onConsecutiveCalls(20, 5));
$randomizer = new Randomizer($numberGenerator);
$generator = new Alliteration($randomizer);
$this->assertSame('Black Bear', $generator->getName());
}
/**
* Verify basic behavior of __toString().
*
* @test
* @covers ::__construct
* @covers ::__toString
* @covers ::getName
*
* @return void
*/
public function toStringBasic()
{
$generator = new Alliteration();
$parts = explode(' ', (string)$generator);
$this->assertSame(2, count($parts));
$this->assertSame($parts[0][0], $parts[1][0]);
}
}
|