StackTraceExtensions GetEntryName Method Delta Engine Documentation
Get entry name from stack frame, which is either the namespace name where the main method is located or if we are started from a test, the name of the test method. View code on GitHub

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

public static string GetEntryName()

Return Value

Type: String
Remarks

Tests: DeltaEngine.Tests.Extensions.StackTraceExtensionsTests
Examples

1 unit tests call DeltaEngine.Extensions.StackTraceExtensions.GetEntryName
[Test]
public void GetEntryName()
{
    Assert.AreEqual("GetEntryName", StackTraceExtensions.GetEntryName());
}
See Also