diff UnitTestsSources/SQLite.cpp @ 803:4689e400e0fa

directory to store the results of the unit tests
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 07 May 2014 09:29:11 +0200
parents 96a2d2da0fee
children 3d6f9b7d0add
line wrap: on
line diff
--- a/UnitTestsSources/SQLite.cpp	Tue May 06 17:09:32 2014 +0200
+++ b/UnitTestsSources/SQLite.cpp	Wed May 07 09:29:11 2014 +0200
@@ -18,9 +18,9 @@
 
 TEST(SQLite, Connection)
 {
-  Toolbox::RemoveFile("coucou");
+  Toolbox::RemoveFile("UnitTestsResults/coucou");
   SQLite::Connection c;
-  c.Open("coucou");
+  c.Open("UnitTestsResults/coucou");
   c.Execute("CREATE TABLE c(k INTEGER PRIMARY KEY AUTOINCREMENT, v INTEGER)");
   c.Execute("INSERT INTO c VALUES(NULL, 42);");
 }