Adding files from previous commit.

This commit is contained in:
mark_story 2010-07-25 19:20:17 -04:00
parent db5c44e386
commit a857e4505c
2 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,31 @@
<?php
/**
* Test suite app/libs session handler
*
*/
class TestAppLibSession implements CakeSessionHandlerInterface {
public static function open() {
return true;
}
public static function close() {
}
public static function read($id) {
}
public static function write($id, $data) {
}
public static function destroy($id) {
}
public static function gc($expires = null) {
}
}

View file

@ -0,0 +1,30 @@
<?php
/**
* Test suite plugin session handler
*/
class TestPluginSession implements CakeSessionHandlerInterface {
public static function open() {
return true;
}
public static function close() {
}
public static function read($id) {
}
public static function write($id, $data) {
}
public static function destroy($id) {
}
public static function gc($expires = null) {
}
}