Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Sinha <manish.sinha@xamarin.com>2015-05-28 01:28:10 +0300
committerManish Sinha <manish.sinha@xamarin.com>2015-05-28 01:28:10 +0300
commitf18a4b92a60110203c0b9c1f5cb04c99248e6342 (patch)
tree9f9788395872f4610ec223f3a50f47563801aa6f /main/tests/UserInterfaceTests/UITestBase.cs
parent1fa6701885212f1fc231be2fbf33797f24b3f3f3 (diff)
[UITest] Remove test fixture teardown so that wrench makefile doesn't fail
Diffstat (limited to 'main/tests/UserInterfaceTests/UITestBase.cs')
-rw-r--r--main/tests/UserInterfaceTests/UITestBase.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/main/tests/UserInterfaceTests/UITestBase.cs b/main/tests/UserInterfaceTests/UITestBase.cs
index 2612e809d2..38ed51ccfc 100644
--- a/main/tests/UserInterfaceTests/UITestBase.cs
+++ b/main/tests/UserInterfaceTests/UITestBase.cs
@@ -93,16 +93,6 @@ namespace UserInterfaceTests
}
}
- [TestFixtureTearDown]
- public virtual void FixtureTearDown ()
- {
- if (!Directory.EnumerateFileSystemEntries (ScreenshotsPath).Any ())
- Directory.Delete (ScreenshotsPath, true);
-
- if (!Directory.EnumerateFileSystemEntries (ideLogPath).Any ())
- Directory.Delete (ideLogPath, true);
- }
-
void InitializeScreenShotPath ()
{
ScreenshotsPath = Path.Combine (currentWorkingDirectory, "Screenshots", GetType ().Name);