public static async Task Can_Delete_Build()
        {
            // Arrange
            BrowserStackAutomateClient target = CreateAuthenticatedClient();

            string buildId = "CHANGE_ME";

            // Act
            await target.DeleteBuildAsync(buildId);

            // Assert
            target
            .Awaiting((p) => p.DeleteBuildAsync(buildId))
            .ShouldThrow <BrowserStackAutomateException>()
            .And
            .ErrorDetail.Should().NotBeNull();
        }