API Differences between 3.8.1 and 3.0.0-beta-2
855 Additions
219 Removals
NUnit
NUnit.Common
NUnit.Compatibility
-
public static class AdditionalTypeExtensions
-
public static class AssemblyExtensions
-
public static class AttributeHelper
-
public class LongLivedMarshalByRefObject
-
public static class MemberInfoExtensions
-
public class NUnitNullType
-
public static class TypeExtensions
- public static ConstructorInfo GetConstructor(this Type type, Type[] ptypes)
- public static ConstructorInfo[] GetConstructors(this Type type)
- public static FieldInfo GetField(this Type type, string name)
- public static Type[] GetGenericArguments(this Type type)
- public static Type[] GetInterfaces(this Type type)
- public static MemberInfo[] GetMember(this Type type, string name, BindingFlags ignored)
- public static MemberInfo[] GetMembers(this Type type, BindingFlags ignored)
- public static MethodInfo GetMethod(this Type type, string name)
- public static MethodInfo GetMethod(this Type type, string name, BindingFlags flags)
- public static MethodInfo GetMethod(this Type type, string name, Type[] ptypes)
- public static MethodInfo[] GetMethods(this Type type)
- public static MethodInfo[] GetMethods(this Type type, BindingFlags flags)
- public static PropertyInfo GetProperty(this Type type, string name)
- public static PropertyInfo GetProperty(this Type type, string name, BindingFlags flags)
- public static bool IsAssignableFrom(this Type type, Type other)
- public static bool IsInstanceOfType(this Type type, object other)
NUnit.Framework
-
public class ApartmentAttribute : PropertyAttribute
-
public class Assert
- public static Exception CatchAsync(AsyncTestDelegate code, string message, object[] args)
- public static Exception CatchAsync(AsyncTestDelegate code)
- public static Exception CatchAsync(Type expectedExceptionType, AsyncTestDelegate code, string message, object[] args)
- public static Exception CatchAsync(Type expectedExceptionType, AsyncTestDelegate code)
- public static TActual CatchAsync<TActual>(AsyncTestDelegate code, string message, object[] args) where TActual : Exception
- public static TActual CatchAsync<TActual>(AsyncTestDelegate code) where TActual : Exception
- public static void DoesNotThrowAsync(AsyncTestDelegate code, string message, object[] args)
- public static void DoesNotThrowAsync(AsyncTestDelegate code)
- public static void False(bool? condition, string message, object[] args)
- public static void False(bool? condition)
- public static void IsFalse(bool? condition, string message, object[] args)
- public static void IsFalse(bool? condition)
- public static void IsTrue(bool? condition, string message, object[] args)
- public static void IsTrue(bool? condition)
- public static void Multiple(AsyncTestDelegate testDelegate)
- public static void Negative(int actual)
- public static void Negative(int actual, string message, object[] args)
- public static void Negative(uint actual)
- public static void Negative(uint actual, string message, object[] args)
- public static void Negative(long actual)
- public static void Negative(long actual, string message, object[] args)
- public static void Negative(ulong actual)
- public static void Negative(ulong actual, string message, object[] args)
- public static void Negative(decimal actual)
- public static void Negative(decimal actual, string message, object[] args)
- public static void Negative(double actual)
- public static void Negative(double actual, string message, object[] args)
- public static void Negative(float actual)
- public static void Negative(float actual, string message, object[] args)
- public static void NotZero(int actual)
- public static void NotZero(int actual, string message, object[] args)
- public static void NotZero(uint actual)
- public static void NotZero(uint actual, string message, object[] args)
- public static void NotZero(long actual)
- public static void NotZero(long actual, string message, object[] args)
- public static void NotZero(ulong actual)
- public static void NotZero(ulong actual, string message, object[] args)
- public static void NotZero(decimal actual)
- public static void NotZero(decimal actual, string message, object[] args)
- public static void NotZero(double actual)
- public static void NotZero(double actual, string message, object[] args)
- public static void NotZero(float actual)
- public static void NotZero(float actual, string message, object[] args)
- public static void Positive(int actual)
- public static void Positive(int actual, string message, object[] args)
- public static void Positive(uint actual)
- public static void Positive(uint actual, string message, object[] args)
- public static void Positive(long actual)
- public static void Positive(long actual, string message, object[] args)
- public static void Positive(ulong actual)
- public static void Positive(ulong actual, string message, object[] args)
- public static void Positive(decimal actual)
- public static void Positive(decimal actual, string message, object[] args)
- public static void Positive(double actual)
- public static void Positive(double actual, string message, object[] args)
- public static void Positive(float actual)
- public static void Positive(float actual, string message, object[] args)
- public static void That(bool condition, Func<string> getExceptionMessage)
- public static void That(Func<bool> condition, Func<string> getExceptionMessage)
- public static void That<TActual>(ActualValueDelegate<TActual> del, IResolveConstraint expr, Func<string> getExceptionMessage)
- public static void That(TestDelegate code, IResolveConstraint constraint, string message, object[] args)
- public static void That(TestDelegate code, IResolveConstraint constraint, Func<string> getExceptionMessage)
- public static void That<TActual>(TActual actual, IResolveConstraint expression, Func<string> getExceptionMessage)
- public static Exception ThrowsAsync(IResolveConstraint expression, AsyncTestDelegate code, string message, object[] args)
- public static Exception ThrowsAsync(IResolveConstraint expression, AsyncTestDelegate code)
- public static Exception ThrowsAsync(Type expectedExceptionType, AsyncTestDelegate code, string message, object[] args)
- public static Exception ThrowsAsync(Type expectedExceptionType, AsyncTestDelegate code)
- public static TActual ThrowsAsync<TActual>(AsyncTestDelegate code, string message, object[] args) where TActual : Exception
- public static TActual ThrowsAsync<TActual>(AsyncTestDelegate code) where TActual : Exception
- public static void True(bool? condition, string message, object[] args)
- public static void True(bool? condition)
- public static void Warn(string message, object[] args)
- public static void Warn(string message)
- public static void Zero(int actual)
- public static void Zero(int actual, string message, object[] args)
- public static void Zero(uint actual)
- public static void Zero(uint actual, string message, object[] args)
- public static void Zero(long actual)
- public static void Zero(long actual, string message, object[] args)
- public static void Zero(ulong actual)
- public static void Zero(ulong actual, string message, object[] args)
- public static void Zero(decimal actual)
- public static void Zero(decimal actual, string message, object[] args)
- public static void Zero(double actual)
- public static void Zero(double actual, string message, object[] args)
- public static void Zero(float actual)
- public static void Zero(float actual, string message, object[] args)
-
public class AssertionException : ResultStateException
-
public class AssertionHelper
-
public class Assume
-
public sealed delegate AsyncTestDelegate : MulticastDelegate
-
public class CollectionAssert
-
public abstract class CombiningStrategyAttribute : NUnitAttribute, ITestBuilder, IApplyToTest
-
public class Contains
-
public class DefaultFloatingPointToleranceAttribute : NUnitAttribute, IApplyToContext
-
public static class Does
-
public abstract class FixtureBuilderAttribute : Attribute
-
public class GlobalSettings
-
public class Has
-
public class IgnoreException : ResultStateException
-
public class InconclusiveException : ResultStateException
-
public class Is
-
public class MultipleAssertException : ResultStateException
-
public sealed class NonParallelizableAttribute : ParallelizableAttribute
-
public class NonTestAssemblyAttribute : NUnitAttribute
-
public class OrderAttribute : NUnitAttribute, IApplyToTest
-
public class ParallelizableAttribute : PropertyAttribute, IApplyToContext
-
public enum ParallelScope
-
public class PlatformAttribute : IncludeExcludeAttribute, IApplyToTest
-
public class PostTestAttribute : NUnitAttribute
-
public class PreTestAttribute : NUnitAttribute
-
public class RandomAttribute : DataAttribute, IParameterDataSource
- public bool Distinct { get; set; }
- public RandomAttribute(double min, double max, int count)
- public IEnumerable GetData(ParameterInfo parameter)
- public RandomAttribute(uint min, uint max, int count)
- public RandomAttribute(long min, long max, int count)
- public RandomAttribute(ulong min, ulong max, int count)
- public RandomAttribute(short min, short max, int count)
- public RandomAttribute(ushort min, ushort max, int count)
- public RandomAttribute(double min, double max, int count)
- public RandomAttribute(float min, float max, int count)
- public RandomAttribute(byte min, byte max, int count)
- public RandomAttribute(sbyte min, sbyte max, int count)
- public IEnumerable GetData(IParameterInfo parameter)
-
public class RangeAttribute : ValuesAttribute
-
public class RepeatAttribute : PropertyAttribute, IWrapSetUpTearDown, ICommandWrapper
-
public class RequiresMTAAttribute : PropertyAttribute
-
public class RequiresSTAAttribute : PropertyAttribute
-
public class RequiresThreadAttribute : PropertyAttribute, IApplyToTest
-
public abstract class ResultStateException : Exception
-
public class RetryAttribute : PropertyAttribute, IWrapSetUpTearDown, ICommandWrapper
-
public class SetCultureAttribute : PropertyAttribute, IApplyToContext
-
public class SetUICultureAttribute : PropertyAttribute, IApplyToContext
-
public class SetUpFixtureAttribute : NUnitAttribute, IFixtureBuilder
-
public enum SpecialValue
-
public class SingleThreadedAttribute : NUnitAttribute, IApplyToContext
-
public class SuccessException : ResultStateException
-
public class TestAssemblyDirectoryResolveAttribute : NUnitAttribute
-
public class TestAttribute : NUnitAttribute, ISimpleTestBuilder, IApplyToTest, IImplyFixture
-
public class TestCaseAttribute : NUnitAttribute, ITestBuilder, ITestCaseData, ITestData, IImplyFixture
-
public abstract class TestCaseBuilderAttribute : NUnitAttribute
-
public class TestCaseSourceAttribute : NUnitAttribute, ITestBuilder, IImplyFixture
-
public class TestContext
-
public class TestFixtureAttribute : NUnitAttribute, IFixtureBuilder, ITestFixtureData, ITestData
-
public class TestFixtureSetUpAttribute : OneTimeSetUpAttribute
-
public class TestFixtureTearDownAttribute : OneTimeTearDownAttribute
-
public class TestFixtureData : TestFixtureParameters
-
public class TestFixtureSourceAttribute : NUnitAttribute, IFixtureBuilder
-
public class TestParameters
- public int Count { get; }
- public string this[string name] { get; }
- public ICollection<string> Names { get; }
- public TestParameters()
- public bool Exists(string name)
- public string Get(string name)
- public string Get(string name, string defaultValue)
- public T Get<T>(string name, T defaultValue)
-
public class TheoryAttribute : CombiningStrategyAttribute, ITestBuilder, IImplyFixture
-
public class TimeoutAttribute : PropertyAttribute, IApplyToContext
-
public class ValuesAttribute : DataAttribute, IParameterDataSource
-
public class ValueSourceAttribute : DataAttribute, IParameterDataSource
-
public class Warn
- public Warn()
- public static bool Equals(object a, object b)
- public static void If<TActual>(ActualValueDelegate<TActual> del, IResolveConstraint expr)
- public static void If<TActual>(ActualValueDelegate<TActual> del, IResolveConstraint expr, string message, object[] args)
- public static void If<TActual>(ActualValueDelegate<TActual> del, IResolveConstraint expr, Func<string> getExceptionMessage)
- public static void If(bool condition, string message, object[] args)
- public static void If(bool condition)
- public static void If(bool condition, Func<string> getExceptionMessage)
- public static void If(Func<bool> condition, string message, object[] args)
- public static void If(Func<bool> condition)
- public static void If(Func<bool> condition, Func<string> getExceptionMessage)
- public static void If<TActual>(TActual actual, IResolveConstraint expression)
- public static void If<TActual>(TActual actual, IResolveConstraint expression, string message, object[] args)
- public static void If<TActual>(TActual actual, IResolveConstraint expression, Func<string> getExceptionMessage)
- public static void ReferenceEquals(object a, object b)
- public static void Unless<TActual>(ActualValueDelegate<TActual> del, IResolveConstraint expr)
- public static void Unless<TActual>(ActualValueDelegate<TActual> del, IResolveConstraint expr, string message, object[] args)
- public static void Unless<TActual>(ActualValueDelegate<TActual> del, IResolveConstraint expr, Func<string> getExceptionMessage)
- public static void Unless(bool condition, string message, object[] args)
- public static void Unless(bool condition)
- public static void Unless(bool condition, Func<string> getExceptionMessage)
- public static void Unless(Func<bool> condition, string message, object[] args)
- public static void Unless(Func<bool> condition)
- public static void Unless(Func<bool> condition, Func<string> getExceptionMessage)
- public static void Unless(TestDelegate code, IResolveConstraint constraint)
- public static void Unless<TActual>(TActual actual, IResolveConstraint expression)
- public static void Unless<TActual>(TActual actual, IResolveConstraint expression, string message, object[] args)
- public static void Unless<TActual>(TActual actual, IResolveConstraint expression, Func<string> getExceptionMessage)
NUnit.Framework.Api
NUnit.Framework.Compatibility
NUnit.Framework.Constraints
NUnit.Framework.Interfaces
NUnit.Framework.Internal
-
public static class AssemblyHelper
-
public class ExceptionHelper
-
public class GenericMethodHelper
-
public class InvalidDataSourceException : Exception
-
public class InvalidTestFixtureException : Exception
-
public class MethodHelper
-
public class MethodWrapper : IMethodInfo, IReflectionInfo
-
public class NUnitException : Exception
-
public class OSPlatform
-
public class ParameterizedFixtureSuite : TestSuite
-
public class ParameterizedMethodSuite : TestSuite
-
public class ParameterSet : ITestCaseData, IApplyToTest
-
public class PlatformHelper
-
public class ParameterWrapper : IParameterInfo, IReflectionInfo
-
public class PropertyBag : IPropertyBag, IXmlNodeBuilder
-
public class PropertyNames
- public const string Order = "Order"
-
public class RandomGenerator
-
public class Randomizer : Random
- public const string DefaultStringChars = "abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ0123456789_"
- public double[] GetDoubles(int count)
- public double[] GetDoubles(double min, double max, int count)
- public object[] GetEnums(int count, Type enumType)
- public int[] GetInts(int min, int max, int count)
- public string GetString(int outputLength, string allowedChars)
- public string GetString(int outputLength)
- public string GetString()
- public bool NextBool()
- public bool NextBool(double probability)
- public byte NextByte()
- public byte NextByte(byte max)
- public byte NextByte(byte min, byte max)
- public decimal NextDecimal()
- public decimal NextDecimal(decimal max)
- public decimal NextDecimal(decimal min, decimal max)
- public double NextDouble(double max)
- public double NextDouble(double min, double max)
- public object NextEnum(Type type)
- public T NextEnum<T>()
- public float NextFloat()
- public float NextFloat(float max)
- public float NextFloat(float min, float max)
- public Guid NextGuid()
- public long NextLong()
- public long NextLong(long max)
- public long NextLong(long min, long max)
- public sbyte NextSByte()
- public sbyte NextSByte(sbyte max)
- public sbyte NextSByte(sbyte min, sbyte max)
- public short NextShort()
- public short NextShort(short max)
- public short NextShort(short min, short max)
- public uint NextUInt()
- public uint NextUInt(uint max)
- public uint NextUInt(uint min, uint max)
- public ulong NextULong()
- public ulong NextULong(ulong max)
- public ulong NextULong(ulong min, ulong max)
- public ushort NextUShort()
- public ushort NextUShort(ushort max)
- public ushort NextUShort(ushort min, ushort max)
-
public sealed class RuntimeFramework
-
public enum RuntimeType
-
public class SetUpFixture : TestSuite, IDisposableFixture
-
public class StackFilter
-
public abstract class Test : ITest, IXmlNodeBuilder, IComparable
-
public class TestAssembly : TestSuite
-
public class TestCaseParameters : TestParameters, ITestCaseData, ITestData, IApplyToTest
-
public class TestCaseTimeoutException : Exception
-
public class TestExecutionContext
-
public abstract class TestFilter : ITestFilter, IXmlNodeBuilder
-
public class TestFixture : TestSuite, IDisposableFixture
-
public class TestFixtureParameters : TestParameters, ITestFixtureData, ITestData
-
public class TestListener : ITestListener
-
public class TestMethod : Test
-
public class TestNameGenerator
-
public abstract class TestParameters : ITestData, IApplyToTest
-
public class TestProgressReporter : ITestListener
-
public abstract class TestResult : ITestResult, IXmlNodeBuilder
-
public class TestSuite : Test
-
public class TestSuiteResult : TestResult
-
public static class ThreadUtility
-
public class TypeHelper
-
public class TypeWrapper : ITypeInfo, IReflectionInfo
NUnit.Framework.Internal.Builders
NUnit.Framework.Internal.Commands
NUnit.Framework.Internal.Execution
NUnit.Framework.Internal.Filters
System.Web.UI