public string SDK()

in BenchPress/Generators/LanguageProviders/PowershellLanguageProvider.cs [53:62]


    public string SDK(SDKFunction sdkFunction)
    {
        switch (sdkFunction.Kind)
        {
            case TestType.ResourceExists:
                return $"Confirm-AzBPResource";
            default:
                throw new Exception($"Unknown test type: {sdkFunction.Kind}");
        }
    }