├── .gitignore ├── README.md ├── WebAPI.Testing.nuspec ├── WebAPI.Testing.sln ├── WebAPI.Testing.userprefs ├── licence.txt ├── packages.config └── src ├── WebAPI.Testing.Tests ├── BrowserExtensionsFixture.cs ├── BrowserFixture.cs ├── EchoModel.cs ├── GetDataController.cs ├── JsonController.cs ├── Properties │ └── AssemblyInfo.cs ├── ReusableBrowserFixture.cs ├── WebAPI.Testing.Tests.csproj ├── app.config └── packages.config └── WebAPI.Testing ├── Browser.cs ├── BrowserContext.cs ├── BrowserContextExtensions.cs ├── BrowserContextMultipartFormData.cs ├── BrowserExtensionMethods.cs ├── BrowserResponseBodyWrapperExtensions.cs ├── Fakes └── FakeRootPathProvider.cs ├── IBrowserContextValues.cs ├── IHideObjectMembers.cs ├── Properties └── AssemblyInfo.cs ├── ReusableBrowser.cs ├── WebAPI.Testing.csproj ├── app.config └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/README.md -------------------------------------------------------------------------------- /WebAPI.Testing.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/WebAPI.Testing.nuspec -------------------------------------------------------------------------------- /WebAPI.Testing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/WebAPI.Testing.sln -------------------------------------------------------------------------------- /WebAPI.Testing.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/WebAPI.Testing.userprefs -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/licence.txt -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/packages.config -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/BrowserExtensionsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/BrowserExtensionsFixture.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/BrowserFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/BrowserFixture.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/EchoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/EchoModel.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/GetDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/GetDataController.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/JsonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/JsonController.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/ReusableBrowserFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/ReusableBrowserFixture.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/WebAPI.Testing.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/WebAPI.Testing.Tests.csproj -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/app.config -------------------------------------------------------------------------------- /src/WebAPI.Testing.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing.Tests/packages.config -------------------------------------------------------------------------------- /src/WebAPI.Testing/Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/Browser.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/BrowserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/BrowserContext.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/BrowserContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/BrowserContextExtensions.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/BrowserContextMultipartFormData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/BrowserContextMultipartFormData.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/BrowserExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/BrowserExtensionMethods.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/BrowserResponseBodyWrapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/BrowserResponseBodyWrapperExtensions.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/Fakes/FakeRootPathProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/Fakes/FakeRootPathProvider.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/IBrowserContextValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/IBrowserContextValues.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/IHideObjectMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/IHideObjectMembers.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/ReusableBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/ReusableBrowser.cs -------------------------------------------------------------------------------- /src/WebAPI.Testing/WebAPI.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/WebAPI.Testing.csproj -------------------------------------------------------------------------------- /src/WebAPI.Testing/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/app.config -------------------------------------------------------------------------------- /src/WebAPI.Testing/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchannon/WebAPI.Testing/HEAD/src/WebAPI.Testing/packages.config --------------------------------------------------------------------------------