public string AssertionDetails()

in BenchPress/Generators/LanguageProviders/PowershellLanguageProvider.cs [31:40]


    public string AssertionDetails(TestType testType)
    {
        switch (testType)
        {
            case TestType.ResourceExists:
                return "-BeSuccessful";
            default:
                throw new Exception($"Unknown test type: {testType}");
        }
    }