1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8/*************************************************************
9* Automated acceptance tests for the Collaborative Multilingual
10* Terminology Profile.
11*
12* See: http://profiles.tiki.org/Collaborative_Multilingual_Terminology
13*************************************************************/
14
15/**
16 * @group gui
17 */
18
19
20class AcceptanceTests_CollaborativeMultilingualTerminologyTest extends TikiSeleniumTestCase
21{
22	protected function setUp()
23	{
24		$this->markTestSkipped("This test still too experimental, so skipping it.");
25		$this->current_test_db = "multilingualTestDump.sql";
26		$this->restoreDBforThisTest();
27		#        $this->applyProfile('Collaborative_Multilingual_Terminology',
28		#                            'http://profiles.tiki.org/');
29	}
30
31	public function applyProfile($profileName, $profileRepositoryUrl)
32	{
33		echo("-- CollaborativeMultilingualTerminology.applyProfile: invoked\n");
34		$this->logInIfNecessaryAs('admin');
35		echo("-- CollaborativeMultilingualTerminology.applyProfile: logged as admin\n");
36	}
37
38	public function ___testRememberToReactivateAllTestsInCollaborativeMultilingualTerminologyTest()
39	{
40		$this->fail("Don't forget to do this");
41	}
42}
43