-
Notifications
You must be signed in to change notification settings - Fork 0
/
footerTest.php
30 lines (25 loc) · 893 Bytes
/
footerTest.php
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
<?php
use PHPUnit\Framework\TestCase;
class footerTest extends TestCase{
/** @test */
function getVersoTestS(){
$q = new Quotes();
$this->assertEquals("¿Qué es poesía? ¿Y tú me lo preguntas? Poesía... eres tú",$q->getVerso($q->getFrases(),4));
}
/** @test */
function getVersoTestF(){
$q = new Quotes();
$this->assertEquals("¿Qué es poesía? ¿Y tú me lo preguntas? Poesía... eres tú",$q->getVerso($q->getFrases(),3));
}
/** @test */
function getAutorS(){
$q = new Quotes();
$this->assertEquals("Pablo Neruda",$q->getAutor($q->getFrases(),1));
}
/** @test */
function getAutorF(){
$q = new Quotes();
$this->assertEquals("Pablo Neruda",$q->getAutor($q->getFrases(),0));
}
}
?>