summaryrefslogtreecommitdiffstats
path: root/tools/NUnit/samples/cpp/managed/failures/cppsample.cpp
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.cpp
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.cpp')
-rw-r--r--tools/NUnit/samples/cpp/managed/failures/cppsample.cpp48
1 files changed, 0 insertions, 48 deletions
diff --git a/tools/NUnit/samples/cpp/managed/failures/cppsample.cpp b/tools/NUnit/samples/cpp/managed/failures/cppsample.cpp
deleted file mode 100644
index dac7156..0000000
--- a/tools/NUnit/samples/cpp/managed/failures/cppsample.cpp
+++ /dev/null
@@ -1,48 +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.
-// ****************************************************************
-
-#include "cppsample.h"
-
-namespace NUnitSamples {
-
- void SimpleCPPSample::Init() {
- fValue1 = 2;
- fValue2 = 3;
- }
-
- void SimpleCPPSample::Add() {
- int result = fValue1 + fValue2;
- Assert::AreEqual(6,result);
- }
-
- void SimpleCPPSample::DivideByZero()
- {
- int zero= 0;
- int result= 8/zero;
- }
-
- void SimpleCPPSample::Equals() {
- Assert::AreEqual(12, 12, "Integer");
- Assert::AreEqual(12L, 12L, "Long");
- Assert::AreEqual('a', 'a', "Char");
-
-
- Assert::AreEqual(12, 13, "Expected Failure (Integer)");
- Assert::AreEqual(12.0, 11.99, 0.0, "Expected Failure (Double)");
- }
-
- void SimpleCPPSample::IgnoredTest()
- {
- throw new InvalidCastException();
- }
-
- void SimpleCPPSample::ExpectAnException()
- {
- throw new InvalidCastException();
- }
-
-}
-