function test_countsRepeats_emptyWord()
 {
     $test_RepeatCounter = new RepeatCounter();
     $word = " ";
     $string_of_words = "a A";
     $result = $test_RepeatCounter->countsRepeats($word, $string_of_words);
     $this->assertEquals("Please enter a word", $result);
 }
Пример #2
0
<?php

require_once __DIR__ . "/../vendor/autoload.php";
require_once __DIR__ . "/../src/RepeatCounter.php";
session_start();
$app = new Silex\Application();
$app->register(new Silex\Provider\TwigServiceProvider(), array("twig.path" => __DIR__ . "/../views"));
$app->get("/", function () use($app) {
    return $app["twig"]->render("wordrepeat.twig");
});
$app->get("/results", function () use($app) {
    $this_RepeatCounter = new RepeatCounter();
    $this_game = $this_RepeatCounter->countsRepeats($_GET["word"], $_GET["string_of_words"]);
    return $app["twig"]->render("results.twig", array("gameinfo" => $this_game));
});
return $app;