|
9 |
edited tags
|
||
|
8 | added 537 characters in body | ||
|
Hi All - Final Edit: I found a solution to the problem (at the bottom of the question). I've got an Nunit problem that's causing me grief. Edit: actually it looks more like a SQLite problem, but I'm not 100% certain yet. My TestFixture has a setup that generates a random filename that's used as a SQLite database in each of my tests.
Each of my tests use this construct in each method that accesses the database:
So that one helper method The problem I have is in my [TearDown] method:
With every test I get an exception:
All of the tests fail when they get to the [TearDown], so I end up with a directory full of temporary databse files (one per test, each with a different name) and a whole bunch of failed tests. What process is accessing the file? I don't get how a second process could be accessing the file. The Note that I get the same result if I run all the tests or just a single test. Update: So I tried Dispose()ing of my DbCommand objects as well, since I wasn't doing that (I assumed that every other ADO.NET provider that Dispose()ing the DbConnection also Dispose()s any commands on that connection.) So now they look like:
It didn't make any difference -- the File.Delete() line still throws an IOException. :-( If I remove that one line in [TearDown] then all my tests pass, but I'm left with a whole bunch of temporary database files. Another Update: This works just fine:
I don't understand! Update: Solution found:
I ran the unit tests through the debugger, and when the |
||||
|
7 | added 907 characters in body | ||
|
Hi All - I've got an Nunit problem that's causing me grief. Edit: actually it looks more like a SQLite problem, but I'm not 100% certain yet. My TestFixture has a setup that generates a random filename that's used as a SQLite database in each of my tests.
Each of my tests use this construct in each method that accesses the database:
So that one helper method The problem I have is in my [TearDown] method:
With every test I get an exception:
All of the tests fail when they get to the [TearDown], so I end up with a directory full of temporary databse files (one per test, each with a different name) and a whole bunch of failed tests. What process is accessing the file? I don't get how a second process could be accessing the file. The Note that I get the same result if I run all the tests or just a single test. Update: So I tried Dispose()ing of my DbCommand objects as well, since I wasn't doing that (I assumed that every other ADO.NET provider that Dispose()ing the DbConnection also Dispose()s any commands on that connection.) So now they look like:
It didn't make any difference -- the File.Delete() line still throws an IOException. :-( If I remove that one line in [TearDown] then all my tests pass, but I'm left with a whole bunch of temporary database files. Another Update: This works just fine:
I don't understand! |
||||
|
Post Made Community Wiki by Community♦
|
||||
|
6 | added 606 characters in body | ||
|
5 | added 99 characters in body | ||
|
4 | added 26 characters in body | ||
|
3 | added 131 characters in body | ||
|
2 | deleted 10 characters in body | ||
|
1 |
|
||
