copyright add to php files

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13186 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
akasima 2013-11-08 05:52:51 +00:00
parent e0879ea45c
commit bce0a0b6d4
373 changed files with 402 additions and 47 deletions

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for CUBRID SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for CUBRID SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class DBTest extends PHPUnit_Framework_TestCase {

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class ExpressionParserTest extends PHPUnit_Framework_TestCase {
/* Escape char for:
@ -106,4 +107,4 @@
$this->_test("abs(score) + abs(totalscore)", NULL
, 'abs('.$this->dbLeftEscapeChar.'score'.$this->dbRightEscapeChar.') + abs('.$this->dbLeftEscapeChar.'totalscore'.$this->dbRightEscapeChar.')');
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @brief Mock database base class
@ -78,4 +79,4 @@
}
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for MSSQL SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/*
* To change this template, choose Tools | Templates

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for Mysql SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for Sqlite SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridDeleteTest extends CubridTest {
@ -17,4 +18,4 @@
and "act" = \'tata\'';
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridIndexHintTest extends CubridTest {
var $xmlPath = 'data/';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridInsertOnlineTest extends CubridOnlineTest {
@ -82,4 +83,4 @@
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridInsertTest extends CubridTest {
@ -124,4 +125,4 @@
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridSelectOnlineTest extends CubridOnlineTest {

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridSelectTest extends CubridTest {
@ -452,4 +453,4 @@
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/*
* To change this template, choose Tools | Templates

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridUpdateTest extends CubridTest {
@ -94,4 +95,4 @@
// $queryTester->test_module_insertModule();
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlIndexHintTest extends MssqlTest {
var $xmlPath = 'data/';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlSelectOnlineTest extends MssqlOnlineTest {
function test_syndication_getGrantedModule(){
@ -8,4 +9,4 @@
}
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlSelectTest extends MssqlTest {
@ -167,4 +168,4 @@
or [group_srl] = -2)';
$this->_test($xml_file, $argsString, $expected, array(67));
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlUpdateOnlineTest extends MssqlOnlineTest {
function test_counter_updateCounterUnique(){
@ -9,4 +10,4 @@
}
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlUpdateTest extends MssqlTest {
@ -19,4 +20,4 @@ class MssqlUpdateTest extends MssqlTest {
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MysqlIndexHintTest extends MysqlTest {
var $xmlPath = 'data/';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class MysqlInsertTest

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MysqlSelectTest extends MysqlTest {

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MysqlUpdateTest extends MysqlTest {
@ -72,4 +73,4 @@
where `session_key` = \'339321\'';
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class SqliteDeleteTest extends SqliteTest {
@ -14,4 +15,4 @@
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class SqliteUpdateTest extends SqliteTest {
@ -18,4 +19,4 @@
$this->_test($xml_file, $argsString, $expected);
}
}
}