StackTraceExtensionsTests GetClassName Method Delta Engine Documentation

Namespace: DeltaEngine.Tests.Extensions
Assembly: DeltaEngine.Tests (in DeltaEngine.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void GetClassName()
Examples

[Test]
public void GetClassName()
{
    Assert.AreEqual("StackTraceExtensionsTests", new StackTrace().GetFrames().GetClassName());
    Assert.AreEqual("", new StackFrame[0].GetClassName());
}
See Also