// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Linq;
using Xunit;
using Xunit.Abstractions;
namespace Microsoft.DotNet.SourceBuild.SmokeTests;
///
/// Basic project create, build, run, publish scenario tests.
/// for related web scenarios.
/// They are encapsulated in a separate testclass so that they can be run in parallel.
///
public class BasicScenarioTests : SmokeTests
{
public BasicScenarioTests(ITestOutputHelper outputHelper) : base(outputHelper) { }
[Theory]
[MemberData(nameof(GetScenarioObjects))]
public void VerifyBasicScenario(TestScenario scenario) => scenario.Execute(DotNetHelper);
private static IEnumerable