Purge and check session message count before and after the unit tests. The unit tests generate

a lot of session messages and we don't want to leave these around after the tests.
This commit is contained in:
Chris Morgan
2007-07-30 01:56:39 +00:00
committed by WineHQ
parent 89c50400de
commit 62820d242c
2 changed files with 13 additions and 1 deletions

View File

@@ -273,6 +273,12 @@ function addmsg($text, $color = "black")
}
function purgeSessionMessages()
{
$sQuery = "truncate sessionMessages";
query_parameters($sQuery);
}
/**
* output msg_buffer and clear it.