summaryrefslogtreecommitdiffstats
path: root/tools/NUnit/samples/cpp/managed/failures/cppsample.h
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-01-31 09:16:24 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-01-31 09:16:24 -0800
commit4e798edfaf93990c79d35e9322efc0b9c0415f49 (patch)
tree6a736fadfe671ca9812033aa664d015a96e49993 /tools/NUnit/samples/cpp/managed/failures/cppsample.h
parent4185e8eb532939d1879dfd9e256db413c699f626 (diff)
downloadDotNetOpenAuth-4e798edfaf93990c79d35e9322efc0b9c0415f49.zip
DotNetOpenAuth-4e798edfaf93990c79d35e9322efc0b9c0415f49.tar.gz
DotNetOpenAuth-4e798edfaf93990c79d35e9322efc0b9c0415f49.tar.bz2
Deleted NUnit samples that were irrelevant to the project.
Diffstat (limited to 'tools/NUnit/samples/cpp/managed/failures/cppsample.h')
-rw-r--r--tools/NUnit/samples/cpp/managed/failures/cppsample.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/tools/NUnit/samples/cpp/managed/failures/cppsample.h b/tools/NUnit/samples/cpp/managed/failures/cppsample.h
deleted file mode 100644
index 4e47439..0000000
--- a/tools/NUnit/samples/cpp/managed/failures/cppsample.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// ****************************************************************
-// This is free software licensed under the NUnit license. You
-// may obtain a copy of the license as well as information regarding
-// copyright ownership at http://nunit.org/?p=license&r=2.4.
-// ****************************************************************
-
-#pragma once
-
-using namespace System;
-using namespace NUnit::Framework;
-
-namespace NUnitSamples
-{
- [TestFixture]
- public __gc class SimpleCPPSample
- {
- int fValue1;
- int fValue2;
- public:
- [SetUp] void Init();
-
- [Test] void Add();
- [Test] void DivideByZero();
- [Test] void Equals();
- [Test] [Ignore("ignored test")] void IgnoredTest();
- [Test] [ExpectedException(__typeof(InvalidOperationException))] void ExpectAnException();
- };
-}