ApprovalTests.Reporters.GoContinuousDeliveryReporter.IsWorkingInThisEnvironment C# (CSharp) Method

IsWorkingInThisEnvironment() public method

public IsWorkingInThisEnvironment ( string forFile ) : bool
forFile string
return bool
        public bool IsWorkingInThisEnvironment(string forFile)
        {
            return Environment.GetEnvironmentVariable("GO_SERVER_URL") != null;
        }
    }
GoContinuousDeliveryReporter