Created
February 12, 2017 05:09
-
-
Save matthewrwilton/2d8904ff92ebbb39bd4739b3cc8d0231 to your computer and use it in GitHub Desktop.
Code snippet for blog from https://github.com/matthewrwilton/SeleniumExamples/blob/master/SeleniumExamples/Scaffolding/WebAppFixtureTestCollection.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[CollectionDefinition(nameof(WebAppFixture))] | |
public class WebAppFixtureTestCollection : ICollectionFixture<WebAppFixture> | |
{ | |
// This class has no code, and is never created. Its purpose is simply | |
// to be the place to apply [CollectionDefinition] and all the | |
// ICollectionFixture<> interfaces. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment