Skip to content

References to Ubuntu 14.04 can be deleted #61754

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
richlander opened this issue Apr 30, 2025 · 0 comments
Open

References to Ubuntu 14.04 can be deleted #61754

richlander opened this issue Apr 30, 2025 · 0 comments
Labels
needs-area-label Used by the dotnet-issue-labeler to label those issues which couldn't be triaged automatically

Comments

@richlander
Copy link
Member

Ubuntu 14.04 is no longer relevant.

public void IsMet_Matches_WhenRunOnMatchIsFalse(string environmentVariableValue)
{
// Arrange
var attribute = new EnvironmentVariableSkipConditionAttribute(
new TestEnvironmentVariable("LinuxFlavor", environmentVariableValue),
"LinuxFlavor",
"Ubuntu14.04")
{
// Example: Run this test on all OSes except on "Ubuntu14.04"
RunOnMatch = false
};
// Act
var isMet = attribute.IsMet;
// Assert
Assert.True(isMet);
}
[Fact]
public void IsMet_DoesNotMatch_WhenRunOnMatchIsFalse()
{
// Arrange
var attribute = new EnvironmentVariableSkipConditionAttribute(
new TestEnvironmentVariable("LinuxFlavor", "Ubuntu14.04"),
"LinuxFlavor",
"Ubuntu14.04")
{
// Example: Run this test on all OSes except on "Ubuntu14.04"
RunOnMatch = false
};
// Act
var isMet = attribute.IsMet;
// Assert
Assert.False(isMet);
}

@wtgodbe

@dotnet-issue-labeler dotnet-issue-labeler bot added the needs-area-label Used by the dotnet-issue-labeler to label those issues which couldn't be triaged automatically label Apr 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-area-label Used by the dotnet-issue-labeler to label those issues which couldn't be triaged automatically
Projects
None yet
Development

No branches or pull requests

1 participant