You've already forked linux-packaging-mono
Imported Upstream version 5.8.0.88
Former-commit-id: 4b7216ffda08448e562271ce733688e761120fc5
This commit is contained in:
parent
7d05485754
commit
6123a772ed
@@ -20,7 +20,20 @@ namespace MonoTests.Mono.Data.Sqlite
|
||||
[TestFixture]
|
||||
public class SqliteFunctionTest
|
||||
{
|
||||
readonly static string uri = Path.Combine (Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "test.db");
|
||||
string uri;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp ()
|
||||
{
|
||||
uri = Path.GetTempFileName ();
|
||||
}
|
||||
|
||||
[TearDown]
|
||||
public void TearDown ()
|
||||
{
|
||||
if (File.Exists (uri))
|
||||
File.Delete (uri);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void CollationTest()
|
||||
|
||||
Reference in New Issue
Block a user