Example #1
0
<?php

/**
 * Copyright (c) Enalean, 2014. All Rights Reserved.
 *
 * This file is a part of Tuleap.
 *
 * Tuleap is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Tuleap is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Tuleap. If not, see <http://www.gnu.org/licenses/>.
 */
require_once 'pre.php';
$tour_factory = new Tuleap_TourFactory(ProjectManager::instance(), new Url());
$current_tour = $tour_factory->getTour($current_user, $request->get('tour_name'));
$stats_dao = new Tuleap_TourUsageStatsDao();
$tour_usage = new Tuleap_TourUsage($stats_dao);
$tour_usage->endTour($current_user, $current_tour, $request->getValidated('current_step', 'uint'));
Example #2
0
 public function itStoresUsageStatisticsWhenAStepIsShown()
 {
     expect($this->stats_dao)->save($this->user->getId(), $this->tour->name, count($this->tour->steps), $this->current_step, false)->once();
     $this->tour_usage->stepShown($this->user, $this->tour, $this->current_step);
 }