Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Common.test.php « modules « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 702ef95fb0f02549a6032d72a42cbc9f4a588b05 (plain)
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
31
32
33
<?php
if(!defined("PATH_TEST_TO_ROOT")) {
	define('PATH_TEST_TO_ROOT', '../..');
}
require_once PATH_TEST_TO_ROOT ."/tests/config_test.php";

class Test_Piwik_Common extends UnitTestCase
{
	function __construct( $title = '')
	{
		parent::__construct( $title );
	}
	
	public function setUp()
	{
	}
	
	public function tearDown()
	{
	}
	
	// sanitize with magic quotes on
	// sanitize with magic quotes off
	// sanitize an array OK
	// sanitize an array with bad value level1
	// sanitize an array with bad value level2
	// sanitize a bad string
	// sanitize a bad integer
	public function test_sanitizeInputValues()
	{
	}
}
?>