Skip to content
Snippets Groups Projects
Commit 8c4d3497 authored by llaffont's avatar llaffont
Browse files

Ajout tests sur alphaMaj dans Cosmogramme

parent 9911e4c3
Branches
Tags
No related merge requests found
<?php
require_once 'classe_indexation.php';
class IndexationPhonetixTest extends PHPUnit_Framework_TestCase {
class IndexationTranformationsTest extends PHPUnit_Framework_TestCase {
public function setUp() {
$this->_indexation = new indexation();
}
......@@ -27,6 +27,24 @@ class IndexationPhonetixTest extends PHPUnit_Framework_TestCase {
public function resultShouldBePhonetix($str, $expected) {
$this->assertEquals($expected, $this->_indexation->phonetix($str));
}
public function alphamaj() {
return [
['choux', 'CHOUX'],
['escroc', 'ESCROC'],
['l\'été', 'L ETE']
];
}
/**
* @test
* @dataProvider alphamaj
*/
public function resultShouldBeAlphamaj($str, $expected) {
$this->assertEquals($expected, $this->_indexation->alphaMaj($str));
}
}
?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment