// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
using Xunit;
namespace AWS.Deploy.CLI.IntegrationTests.BeanstalkBackwardsCompatibilityTests
{
///
/// The goal of this class is to create a Collection definition and use as shared context.
/// More info could be found here https://xunit.net/docs/shared-context
///
[CollectionDefinition(nameof(TestContextFixture))]
public class TestContextFixtureCollection : ICollectionFixture
{
}
}