├── .gitignore ├── .travis.yml ├── README.md ├── c-sharp-rest ├── PetClinic │ ├── PetClinic.gw3 │ ├── PetClinic.sln │ ├── PetClinic │ │ ├── FindOwnersSharedState.cs │ │ ├── Helper.cs │ │ ├── NewOwnerSharedState.cs │ │ ├── OwnerInformationSharedState.cs │ │ ├── PetClinic.csproj │ │ ├── PetClinicSharedState.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── VeterinariensSharedState.cs │ │ └── packages.config │ ├── README.md │ └── packages │ │ ├── FluentAssertions.4.5.0 │ │ ├── FluentAssertions.4.5.0.nupkg │ │ └── lib │ │ │ ├── dotnet │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ ├── FluentAssertions.dll │ │ │ ├── FluentAssertions.pdb │ │ │ └── FluentAssertions.xml │ │ │ ├── monoandroid │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ └── FluentAssertions.Core.xml │ │ │ ├── monotouch │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ └── FluentAssertions.Core.xml │ │ │ ├── net40 │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ ├── FluentAssertions.Core.xml │ │ │ ├── FluentAssertions.dll │ │ │ ├── FluentAssertions.pdb │ │ │ └── FluentAssertions.xml │ │ │ ├── net45 │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ ├── FluentAssertions.Core.xml │ │ │ ├── FluentAssertions.dll │ │ │ ├── FluentAssertions.pdb │ │ │ └── FluentAssertions.xml │ │ │ ├── portable-monotouch+monoandroid+xamarin.ios │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ └── FluentAssertions.Core.xml │ │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ ├── FluentAssertions.Core.xml │ │ │ ├── FluentAssertions.XML │ │ │ ├── FluentAssertions.dll │ │ │ └── FluentAssertions.pdb │ │ │ ├── portable-win81+wpa81 │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ ├── FluentAssertions.Core.xml │ │ │ ├── FluentAssertions.dll │ │ │ ├── FluentAssertions.pdb │ │ │ ├── FluentAssertions.pri │ │ │ └── FluentAssertions.xml │ │ │ ├── sl5 │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ ├── FluentAssertions.Core.xml │ │ │ ├── FluentAssertions.dll │ │ │ ├── FluentAssertions.pdb │ │ │ ├── FluentAssertions.xml │ │ │ ├── Microsoft.CSharp.dll │ │ │ ├── Microsoft.CSharp.xml │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml │ │ │ ├── System.Xml.Linq.dll │ │ │ ├── System.Xml.Linq.xml │ │ │ ├── de │ │ │ │ ├── Microsoft.CSharp.resources.dll │ │ │ │ └── System.Xml.Linq.resources.dll │ │ │ ├── es │ │ │ │ ├── Microsoft.CSharp.resources.dll │ │ │ │ └── System.Xml.Linq.resources.dll │ │ │ ├── fr │ │ │ │ ├── Microsoft.CSharp.resources.dll │ │ │ │ └── System.Xml.Linq.resources.dll │ │ │ ├── it │ │ │ │ ├── Microsoft.CSharp.resources.dll │ │ │ │ └── System.Xml.Linq.resources.dll │ │ │ ├── ja │ │ │ │ ├── Microsoft.CSharp.resources.dll │ │ │ │ └── System.Xml.Linq.resources.dll │ │ │ ├── ko │ │ │ │ ├── Microsoft.CSharp.resources.dll │ │ │ │ └── System.Xml.Linq.resources.dll │ │ │ ├── ru │ │ │ │ ├── Microsoft.CSharp.resources.dll │ │ │ │ └── System.Xml.Linq.resources.dll │ │ │ ├── zh-Hans │ │ │ │ ├── Microsoft.CSharp.resources.dll │ │ │ │ └── System.Xml.Linq.resources.dll │ │ │ └── zh-Hant │ │ │ │ ├── Microsoft.CSharp.resources.dll │ │ │ │ └── System.Xml.Linq.resources.dll │ │ │ ├── win81 │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ ├── FluentAssertions.Core.xml │ │ │ ├── FluentAssertions.dll │ │ │ ├── FluentAssertions.pdb │ │ │ ├── FluentAssertions.pri │ │ │ └── FluentAssertions.xml │ │ │ ├── wp8 │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ ├── FluentAssertions.Core.xml │ │ │ ├── FluentAssertions.dll │ │ │ ├── FluentAssertions.pdb │ │ │ └── FluentAssertions.xml │ │ │ ├── wpa81 │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ ├── FluentAssertions.Core.xml │ │ │ ├── FluentAssertions.dll │ │ │ ├── FluentAssertions.pdb │ │ │ ├── FluentAssertions.pri │ │ │ └── FluentAssertions.xml │ │ │ └── xamarin.ios │ │ │ ├── FluentAssertions.Core.dll │ │ │ ├── FluentAssertions.Core.pdb │ │ │ └── FluentAssertions.Core.xml │ │ ├── Newtonsoft.Json.8.0.3 │ │ ├── Newtonsoft.Json.8.0.3.nupkg │ │ ├── lib │ │ │ ├── net20 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net35 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net40 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net45 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ └── portable-net45+wp80+win8+wpa81+dnxcore50 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ └── tools │ │ │ └── install.ps1 │ │ ├── RestSharp.105.2.3 │ │ ├── RestSharp.105.2.3.nupkg │ │ ├── lib │ │ │ ├── MonoAndroid10 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── MonoTouch10 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── Xamarin.iOS10 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── net35 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── net4-client │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── net4 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── net45 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── net451 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── net452 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── net46 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── sl5 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ ├── windowsphone8 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ └── windowsphone81 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ └── readme.txt │ │ ├── Selenium.Mozilla.Firefox.Webdriver.0.6.0 │ │ ├── Driver │ │ │ └── wires-0.6.0-win.exe │ │ ├── Selenium.Mozilla.Firefox.Webdriver.0.6.0.nupkg │ │ ├── content │ │ │ └── Readme.txt │ │ └── tools │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ │ ├── Selenium.Support.2.53.0 │ │ ├── Selenium.Support.2.53.0.nupkg │ │ └── lib │ │ │ ├── net35 │ │ │ ├── WebDriver.Support.dll │ │ │ └── WebDriver.Support.xml │ │ │ └── net40 │ │ │ ├── WebDriver.Support.dll │ │ │ └── WebDriver.Support.xml │ │ ├── Selenium.WebDriver.2.53.0 │ │ ├── Selenium.WebDriver.2.53.0.nupkg │ │ └── lib │ │ │ ├── net35 │ │ │ ├── WebDriver.dll │ │ │ └── WebDriver.xml │ │ │ └── net40 │ │ │ ├── WebDriver.dll │ │ │ └── WebDriver.xml │ │ └── repositories.config └── SmallModel │ ├── README.md │ ├── SmallModel.sln │ ├── SmallModel │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SmallModel.cs │ ├── SmallModel.csproj │ ├── SmallModel.graphml │ └── packages.config │ └── packages │ ├── Newtonsoft.Json.8.0.3 │ ├── Newtonsoft.Json.8.0.3.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8+wpa81+dnxcore50 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── tools │ │ └── install.ps1 │ ├── RestSharp.105.2.3 │ ├── RestSharp.105.2.3.nupkg │ ├── lib │ │ ├── MonoAndroid10 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── MonoTouch10 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── Xamarin.iOS10 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── net35 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── net4-client │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── net4 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── net45 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── net451 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── net452 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── net46 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── sl5 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ ├── windowsphone8 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ │ └── windowsphone81 │ │ │ ├── RestSharp.dll │ │ │ └── RestSharp.xml │ └── readme.txt │ └── repositories.config ├── c-sharp-websocket ├── SmallModel │ ├── README.md │ ├── SmallModel.graphml │ ├── SmallModel.png │ ├── SmallModel.sln │ ├── SmallModel │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SmallModel.cs │ │ ├── SmallModel.csproj │ │ └── packages.config │ └── packages │ │ ├── Alchemy.2.2.1 │ │ ├── Alchemy.2.2.1.nupkg │ │ └── lib │ │ │ └── net40 │ │ │ └── Alchemy.dll │ │ ├── Newtonsoft.Json.6.0.8 │ │ ├── Newtonsoft.Json.6.0.8.nupkg │ │ ├── lib │ │ │ ├── net20 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net35 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net40 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net45 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── netcore45 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ └── portable-net45+wp80+win8+wpa81+aspnetcore50 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ └── tools │ │ │ └── install.ps1 │ │ └── repositories.config └── gw3-client │ ├── SmallModel.json │ ├── gw3-client.sln │ ├── gw3-client │ ├── MainWindow.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── gtk-gui │ │ ├── MainWindow.cs │ │ ├── generated.cs │ │ └── gui.stetic │ ├── gw3-client.csproj │ └── packages.config │ └── packages │ ├── Alchemy.2.2.1 │ ├── Alchemy.2.2.1.nupkg │ └── lib │ │ └── net40 │ │ └── Alchemy.dll │ └── repositories.config ├── command-line-scripts └── run-RESTFUL-Test.bash ├── html-websocket ├── README.md ├── gw3-client.html └── prototype.js ├── java-algorithm ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── company │ │ ├── MyPathGenerator.java │ │ ├── MyReverseAlgorithm.java │ │ └── MyTest.java │ └── resources │ └── logback.xml ├── java-amazon ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── build │ └── reports │ │ └── tests │ │ ├── 1613982554107.0.html │ │ ├── 1613982554107.0.png │ │ ├── 1613982994055.0.html │ │ ├── 1613982994055.0.png │ │ ├── 1613983242167.0.html │ │ ├── 1613983242167.0.png │ │ ├── 1614242647045.0.html │ │ ├── 1614242647045.0.png │ │ ├── 1660719679822.0.html │ │ └── 1660719679822.0.png ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── graphwalker │ │ └── ShoppingCartTest.java │ └── resources │ └── org │ └── graphwalker │ └── ShoppingCart.json ├── java-annotation ├── pom.xml └── src │ └── test │ ├── java │ └── org │ │ └── graphwalker │ │ └── example │ │ └── CreateModelTest.java │ └── resources │ ├── logback-test.xml │ └── org │ └── graphwalker │ └── example │ └── CreateModel.graphml ├── java-appium ├── README.md ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── graphwalker │ │ └── appium │ │ └── NotesListTest.java │ └── resources │ ├── Notepad.apk │ └── org │ └── graphwalker │ └── appium │ ├── NotesList.graphml │ └── NotesList.png ├── java-dataDriven ├── README.md ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── graphwalker │ │ └── UsingDataFromTestImpl.java │ └── resources │ └── org │ └── graphwalker │ └── UsingDataFromTest.json ├── java-integration-test ├── pom.xml └── src │ ├── main │ └── java │ │ └── org.graphwalker.example │ │ └── Calculator.java │ └── test │ ├── java │ └── org │ │ └── graphwalker │ │ └── example │ │ ├── CalculatorAStarTest.java │ │ ├── CalculatorTest.java │ │ └── CalulatorIT.java │ └── resources │ └── org │ └── graphwalker │ └── example │ └── CalculatorModel.graphml ├── java-petclinic ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── build │ └── reports │ │ └── tests │ │ └── 1614171832475.0.html ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── company │ │ ├── modelimplementations │ │ ├── FindOwnersTest.java │ │ ├── NewOwnerTest.java │ │ ├── OwnerInformationTest.java │ │ ├── PetClinicTest.java │ │ └── VeterinariansTest.java │ │ ├── observers │ │ └── GraphStreamObserver.java │ │ └── runners │ │ ├── GraphStreamApplication.java │ │ └── WebSocketApplication.java │ └── resources │ └── com │ └── company │ └── PetClinic.json ├── java-plugin-generator ├── README.md ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── mycompany │ │ └── lib │ │ └── PluginGenerator.java │ └── resources │ └── com │ └── company │ └── SimpleModel.json ├── java-prestashop ├── README.md ├── images │ └── prestashop │ │ ├── After_installation.png │ │ ├── Database_configuration.png │ │ ├── File_and_folders_permissions.png │ │ ├── InstallationAssistant.png │ │ ├── Store_information.png │ │ └── bitnami_installing.png ├── pom.xml ├── requirement │ └── UC01.md └── src │ └── main │ ├── java │ └── com │ │ └── prestashop │ │ ├── modelimplementation │ │ ├── EyeImpl.java │ │ ├── SelenideImpl.java │ │ └── SikuliImpl.java │ │ └── runners │ │ ├── EyeRunner.java │ │ ├── SelenideRunner.java │ │ └── SikuliRunner.java │ └── resources │ ├── com │ └── prestashop │ │ ├── UC01 - Naive version.json │ │ └── UC01 - Normalized version.json │ ├── images │ ├── addToCart.png │ ├── cartButton.png │ ├── continueShopping.png │ ├── homePage.png │ ├── localhost_icon.png │ ├── personalInformation.png │ ├── proceedToCheckout.png │ ├── product.png │ ├── productPage.png │ └── shoppingCart.png │ └── logback.xml ├── java-websocket ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── graphwalker │ │ └── example │ │ └── GraphWalkerWebSocketClient.java │ └── test │ ├── java │ └── org │ │ └── graphwalker │ │ └── example │ │ └── GraphWalkerClientTest.java │ └── resources │ ├── json │ └── SmallModel.json │ └── logback-test.xml └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/README.md -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic.gw3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic.gw3 -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic.sln -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/FindOwnersSharedState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/FindOwnersSharedState.cs -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/Helper.cs -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/NewOwnerSharedState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/NewOwnerSharedState.cs -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/OwnerInformationSharedState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/OwnerInformationSharedState.cs -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/PetClinic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/PetClinic.csproj -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/PetClinicSharedState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/PetClinicSharedState.cs -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/Program.cs -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/VeterinariensSharedState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/VeterinariensSharedState.cs -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/PetClinic/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/PetClinic/packages.config -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/README.md -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/FluentAssertions.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/FluentAssertions.4.5.0.nupkg -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/dotnet/FluentAssertions.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monoandroid/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monoandroid/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monoandroid/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monoandroid/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monoandroid/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monoandroid/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monotouch/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monotouch/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monotouch/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monotouch/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monotouch/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/monotouch/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net40/FluentAssertions.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/net45/FluentAssertions.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.XML -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.pri -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/portable-win81+wpa81/FluentAssertions.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/FluentAssertions.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/System.Xml.Linq.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/System.Xml.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/System.Xml.Linq.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/de/Microsoft.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/de/Microsoft.CSharp.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/de/System.Xml.Linq.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/de/System.Xml.Linq.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/es/Microsoft.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/es/Microsoft.CSharp.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/es/System.Xml.Linq.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/es/System.Xml.Linq.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/fr/Microsoft.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/fr/Microsoft.CSharp.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/fr/System.Xml.Linq.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/fr/System.Xml.Linq.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/it/Microsoft.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/it/Microsoft.CSharp.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/it/System.Xml.Linq.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/it/System.Xml.Linq.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ja/Microsoft.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ja/Microsoft.CSharp.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ja/System.Xml.Linq.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ja/System.Xml.Linq.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ko/Microsoft.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ko/Microsoft.CSharp.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ko/System.Xml.Linq.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ko/System.Xml.Linq.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ru/Microsoft.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ru/Microsoft.CSharp.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ru/System.Xml.Linq.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/ru/System.Xml.Linq.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/zh-Hans/Microsoft.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/zh-Hans/Microsoft.CSharp.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/zh-Hans/System.Xml.Linq.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/zh-Hans/System.Xml.Linq.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/zh-Hant/Microsoft.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/zh-Hant/Microsoft.CSharp.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/zh-Hant/System.Xml.Linq.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/sl5/zh-Hant/System.Xml.Linq.resources.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.pri -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/win81/FluentAssertions.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wp8/FluentAssertions.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.pri -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/wpa81/FluentAssertions.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/xamarin.ios/FluentAssertions.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/xamarin.ios/FluentAssertions.Core.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/xamarin.ios/FluentAssertions.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/xamarin.ios/FluentAssertions.Core.pdb -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/xamarin.ios/FluentAssertions.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/FluentAssertions.4.5.0/lib/xamarin.ios/FluentAssertions.Core.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Newtonsoft.Json.8.0.3/tools/install.ps1 -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/RestSharp.105.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/RestSharp.105.2.3.nupkg -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net35/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net35/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net35/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net35/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net4/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net4/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net4/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net4/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net45/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net45/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net45/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net45/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net451/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net451/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net451/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net451/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net452/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net452/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net452/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net452/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net46/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net46/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net46/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/net46/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/sl5/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/sl5/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/sl5/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/sl5/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/RestSharp.105.2.3/readme.txt -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/Driver/wires-0.6.0-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/Driver/wires-0.6.0-win.exe -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/Selenium.Mozilla.Firefox.Webdriver.0.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/Selenium.Mozilla.Firefox.Webdriver.0.6.0.nupkg -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/content/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/content/Readme.txt -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/tools/install.ps1 -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Mozilla.Firefox.Webdriver.0.6.0/tools/uninstall.ps1 -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/Selenium.Support.2.53.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/Selenium.Support.2.53.0.nupkg -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/lib/net35/WebDriver.Support.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/lib/net35/WebDriver.Support.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/lib/net35/WebDriver.Support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/lib/net35/WebDriver.Support.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/lib/net40/WebDriver.Support.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/lib/net40/WebDriver.Support.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/lib/net40/WebDriver.Support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.Support.2.53.0/lib/net40/WebDriver.Support.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/Selenium.WebDriver.2.53.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/Selenium.WebDriver.2.53.0.nupkg -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/lib/net35/WebDriver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/lib/net35/WebDriver.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/lib/net35/WebDriver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/lib/net35/WebDriver.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/lib/net40/WebDriver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/lib/net40/WebDriver.dll -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/lib/net40/WebDriver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/Selenium.WebDriver.2.53.0/lib/net40/WebDriver.xml -------------------------------------------------------------------------------- /c-sharp-rest/PetClinic/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/PetClinic/packages/repositories.config -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/README.md -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/SmallModel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/SmallModel.sln -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/SmallModel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/SmallModel/Program.cs -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/SmallModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/SmallModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/SmallModel/SmallModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/SmallModel/SmallModel.cs -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/SmallModel/SmallModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/SmallModel/SmallModel.csproj -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/SmallModel/SmallModel.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/SmallModel/SmallModel.graphml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/SmallModel/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/SmallModel/packages.config -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/Newtonsoft.Json.8.0.3/tools/install.ps1 -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/RestSharp.105.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/RestSharp.105.2.3.nupkg -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net35/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net35/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net35/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net35/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net4/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net4/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net4/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net4/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net45/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net45/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net45/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net45/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net451/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net451/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net451/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net451/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net452/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net452/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net452/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net452/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net46/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net46/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net46/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/net46/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/sl5/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/sl5/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/sl5/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/sl5/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.dll -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.xml -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/RestSharp.105.2.3/readme.txt -------------------------------------------------------------------------------- /c-sharp-rest/SmallModel/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-rest/SmallModel/packages/repositories.config -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/README.md -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/SmallModel.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/SmallModel.graphml -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/SmallModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/SmallModel.png -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/SmallModel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/SmallModel.sln -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/SmallModel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/SmallModel/Program.cs -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/SmallModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/SmallModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/SmallModel/SmallModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/SmallModel/SmallModel.cs -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/SmallModel/SmallModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/SmallModel/SmallModel.csproj -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/SmallModel/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/SmallModel/packages.config -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Alchemy.2.2.1/Alchemy.2.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Alchemy.2.2.1/Alchemy.2.2.1.nupkg -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Alchemy.2.2.1/lib/net40/Alchemy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Alchemy.2.2.1/lib/net40/Alchemy.dll -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/Newtonsoft.Json.6.0.8/tools/install.ps1 -------------------------------------------------------------------------------- /c-sharp-websocket/SmallModel/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/SmallModel/packages/repositories.config -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/SmallModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/SmallModel.json -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/gw3-client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/gw3-client.sln -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/gw3-client/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/gw3-client/MainWindow.cs -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/gw3-client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/gw3-client/Program.cs -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/gw3-client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/gw3-client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/gw3-client/gtk-gui/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/gw3-client/gtk-gui/MainWindow.cs -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/gw3-client/gtk-gui/generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/gw3-client/gtk-gui/generated.cs -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/gw3-client/gtk-gui/gui.stetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/gw3-client/gtk-gui/gui.stetic -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/gw3-client/gw3-client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/gw3-client/gw3-client.csproj -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/gw3-client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/gw3-client/packages.config -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/packages/Alchemy.2.2.1/Alchemy.2.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/packages/Alchemy.2.2.1/Alchemy.2.2.1.nupkg -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/packages/Alchemy.2.2.1/lib/net40/Alchemy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/packages/Alchemy.2.2.1/lib/net40/Alchemy.dll -------------------------------------------------------------------------------- /c-sharp-websocket/gw3-client/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/c-sharp-websocket/gw3-client/packages/repositories.config -------------------------------------------------------------------------------- /command-line-scripts/run-RESTFUL-Test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/command-line-scripts/run-RESTFUL-Test.bash -------------------------------------------------------------------------------- /html-websocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/html-websocket/README.md -------------------------------------------------------------------------------- /html-websocket/gw3-client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/html-websocket/gw3-client.html -------------------------------------------------------------------------------- /html-websocket/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/html-websocket/prototype.js -------------------------------------------------------------------------------- /java-algorithm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-algorithm/pom.xml -------------------------------------------------------------------------------- /java-algorithm/src/main/java/com/company/MyPathGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-algorithm/src/main/java/com/company/MyPathGenerator.java -------------------------------------------------------------------------------- /java-algorithm/src/main/java/com/company/MyReverseAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-algorithm/src/main/java/com/company/MyReverseAlgorithm.java -------------------------------------------------------------------------------- /java-algorithm/src/main/java/com/company/MyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-algorithm/src/main/java/com/company/MyTest.java -------------------------------------------------------------------------------- /java-algorithm/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-algorithm/src/main/resources/logback.xml -------------------------------------------------------------------------------- /java-amazon/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /java-amazon/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /java-amazon/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /java-amazon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/README.md -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1613982554107.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1613982554107.0.html -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1613982554107.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1613982554107.0.png -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1613982994055.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1613982994055.0.html -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1613982994055.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1613982994055.0.png -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1613983242167.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1613983242167.0.html -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1613983242167.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1613983242167.0.png -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1614242647045.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1614242647045.0.html -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1614242647045.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1614242647045.0.png -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1660719679822.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1660719679822.0.html -------------------------------------------------------------------------------- /java-amazon/build/reports/tests/1660719679822.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/build/reports/tests/1660719679822.0.png -------------------------------------------------------------------------------- /java-amazon/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/mvnw -------------------------------------------------------------------------------- /java-amazon/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/mvnw.cmd -------------------------------------------------------------------------------- /java-amazon/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/pom.xml -------------------------------------------------------------------------------- /java-amazon/src/main/java/org/graphwalker/ShoppingCartTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/src/main/java/org/graphwalker/ShoppingCartTest.java -------------------------------------------------------------------------------- /java-amazon/src/main/resources/org/graphwalker/ShoppingCart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-amazon/src/main/resources/org/graphwalker/ShoppingCart.json -------------------------------------------------------------------------------- /java-annotation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-annotation/pom.xml -------------------------------------------------------------------------------- /java-annotation/src/test/java/org/graphwalker/example/CreateModelTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-annotation/src/test/java/org/graphwalker/example/CreateModelTest.java -------------------------------------------------------------------------------- /java-annotation/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-annotation/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /java-annotation/src/test/resources/org/graphwalker/example/CreateModel.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-annotation/src/test/resources/org/graphwalker/example/CreateModel.graphml -------------------------------------------------------------------------------- /java-appium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-appium/README.md -------------------------------------------------------------------------------- /java-appium/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-appium/pom.xml -------------------------------------------------------------------------------- /java-appium/src/main/java/org/graphwalker/appium/NotesListTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-appium/src/main/java/org/graphwalker/appium/NotesListTest.java -------------------------------------------------------------------------------- /java-appium/src/main/resources/Notepad.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-appium/src/main/resources/Notepad.apk -------------------------------------------------------------------------------- /java-appium/src/main/resources/org/graphwalker/appium/NotesList.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-appium/src/main/resources/org/graphwalker/appium/NotesList.graphml -------------------------------------------------------------------------------- /java-appium/src/main/resources/org/graphwalker/appium/NotesList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-appium/src/main/resources/org/graphwalker/appium/NotesList.png -------------------------------------------------------------------------------- /java-dataDriven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-dataDriven/README.md -------------------------------------------------------------------------------- /java-dataDriven/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-dataDriven/pom.xml -------------------------------------------------------------------------------- /java-dataDriven/src/main/java/org/graphwalker/UsingDataFromTestImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-dataDriven/src/main/java/org/graphwalker/UsingDataFromTestImpl.java -------------------------------------------------------------------------------- /java-dataDriven/src/main/resources/org/graphwalker/UsingDataFromTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-dataDriven/src/main/resources/org/graphwalker/UsingDataFromTest.json -------------------------------------------------------------------------------- /java-integration-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-integration-test/pom.xml -------------------------------------------------------------------------------- /java-integration-test/src/main/java/org.graphwalker.example/Calculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-integration-test/src/main/java/org.graphwalker.example/Calculator.java -------------------------------------------------------------------------------- /java-integration-test/src/test/java/org/graphwalker/example/CalculatorAStarTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-integration-test/src/test/java/org/graphwalker/example/CalculatorAStarTest.java -------------------------------------------------------------------------------- /java-integration-test/src/test/java/org/graphwalker/example/CalculatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-integration-test/src/test/java/org/graphwalker/example/CalculatorTest.java -------------------------------------------------------------------------------- /java-integration-test/src/test/java/org/graphwalker/example/CalulatorIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-integration-test/src/test/java/org/graphwalker/example/CalulatorIT.java -------------------------------------------------------------------------------- /java-integration-test/src/test/resources/org/graphwalker/example/CalculatorModel.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-integration-test/src/test/resources/org/graphwalker/example/CalculatorModel.graphml -------------------------------------------------------------------------------- /java-petclinic/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /java-petclinic/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /java-petclinic/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /java-petclinic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/README.md -------------------------------------------------------------------------------- /java-petclinic/build/reports/tests/1614171832475.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/build/reports/tests/1614171832475.0.html -------------------------------------------------------------------------------- /java-petclinic/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/mvnw -------------------------------------------------------------------------------- /java-petclinic/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/mvnw.cmd -------------------------------------------------------------------------------- /java-petclinic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/pom.xml -------------------------------------------------------------------------------- /java-petclinic/src/main/java/com/company/modelimplementations/FindOwnersTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/src/main/java/com/company/modelimplementations/FindOwnersTest.java -------------------------------------------------------------------------------- /java-petclinic/src/main/java/com/company/modelimplementations/NewOwnerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/src/main/java/com/company/modelimplementations/NewOwnerTest.java -------------------------------------------------------------------------------- /java-petclinic/src/main/java/com/company/modelimplementations/OwnerInformationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/src/main/java/com/company/modelimplementations/OwnerInformationTest.java -------------------------------------------------------------------------------- /java-petclinic/src/main/java/com/company/modelimplementations/PetClinicTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/src/main/java/com/company/modelimplementations/PetClinicTest.java -------------------------------------------------------------------------------- /java-petclinic/src/main/java/com/company/modelimplementations/VeterinariansTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/src/main/java/com/company/modelimplementations/VeterinariansTest.java -------------------------------------------------------------------------------- /java-petclinic/src/main/java/com/company/observers/GraphStreamObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/src/main/java/com/company/observers/GraphStreamObserver.java -------------------------------------------------------------------------------- /java-petclinic/src/main/java/com/company/runners/GraphStreamApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/src/main/java/com/company/runners/GraphStreamApplication.java -------------------------------------------------------------------------------- /java-petclinic/src/main/java/com/company/runners/WebSocketApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/src/main/java/com/company/runners/WebSocketApplication.java -------------------------------------------------------------------------------- /java-petclinic/src/main/resources/com/company/PetClinic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-petclinic/src/main/resources/com/company/PetClinic.json -------------------------------------------------------------------------------- /java-plugin-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-plugin-generator/README.md -------------------------------------------------------------------------------- /java-plugin-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-plugin-generator/pom.xml -------------------------------------------------------------------------------- /java-plugin-generator/src/main/java/com/mycompany/lib/PluginGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-plugin-generator/src/main/java/com/mycompany/lib/PluginGenerator.java -------------------------------------------------------------------------------- /java-plugin-generator/src/main/resources/com/company/SimpleModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-plugin-generator/src/main/resources/com/company/SimpleModel.json -------------------------------------------------------------------------------- /java-prestashop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/README.md -------------------------------------------------------------------------------- /java-prestashop/images/prestashop/After_installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/images/prestashop/After_installation.png -------------------------------------------------------------------------------- /java-prestashop/images/prestashop/Database_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/images/prestashop/Database_configuration.png -------------------------------------------------------------------------------- /java-prestashop/images/prestashop/File_and_folders_permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/images/prestashop/File_and_folders_permissions.png -------------------------------------------------------------------------------- /java-prestashop/images/prestashop/InstallationAssistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/images/prestashop/InstallationAssistant.png -------------------------------------------------------------------------------- /java-prestashop/images/prestashop/Store_information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/images/prestashop/Store_information.png -------------------------------------------------------------------------------- /java-prestashop/images/prestashop/bitnami_installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/images/prestashop/bitnami_installing.png -------------------------------------------------------------------------------- /java-prestashop/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/pom.xml -------------------------------------------------------------------------------- /java-prestashop/requirement/UC01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/requirement/UC01.md -------------------------------------------------------------------------------- /java-prestashop/src/main/java/com/prestashop/modelimplementation/EyeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/java/com/prestashop/modelimplementation/EyeImpl.java -------------------------------------------------------------------------------- /java-prestashop/src/main/java/com/prestashop/modelimplementation/SelenideImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/java/com/prestashop/modelimplementation/SelenideImpl.java -------------------------------------------------------------------------------- /java-prestashop/src/main/java/com/prestashop/modelimplementation/SikuliImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/java/com/prestashop/modelimplementation/SikuliImpl.java -------------------------------------------------------------------------------- /java-prestashop/src/main/java/com/prestashop/runners/EyeRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/java/com/prestashop/runners/EyeRunner.java -------------------------------------------------------------------------------- /java-prestashop/src/main/java/com/prestashop/runners/SelenideRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/java/com/prestashop/runners/SelenideRunner.java -------------------------------------------------------------------------------- /java-prestashop/src/main/java/com/prestashop/runners/SikuliRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/java/com/prestashop/runners/SikuliRunner.java -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/com/prestashop/UC01 - Naive version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/com/prestashop/UC01 - Naive version.json -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/com/prestashop/UC01 - Normalized version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/com/prestashop/UC01 - Normalized version.json -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/addToCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/addToCart.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/cartButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/cartButton.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/continueShopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/continueShopping.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/homePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/homePage.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/localhost_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/localhost_icon.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/personalInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/personalInformation.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/proceedToCheckout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/proceedToCheckout.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/product.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/productPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/productPage.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/images/shoppingCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/images/shoppingCart.png -------------------------------------------------------------------------------- /java-prestashop/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-prestashop/src/main/resources/logback.xml -------------------------------------------------------------------------------- /java-websocket/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-websocket/pom.xml -------------------------------------------------------------------------------- /java-websocket/src/main/java/org/graphwalker/example/GraphWalkerWebSocketClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-websocket/src/main/java/org/graphwalker/example/GraphWalkerWebSocketClient.java -------------------------------------------------------------------------------- /java-websocket/src/test/java/org/graphwalker/example/GraphWalkerClientTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-websocket/src/test/java/org/graphwalker/example/GraphWalkerClientTest.java -------------------------------------------------------------------------------- /java-websocket/src/test/resources/json/SmallModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-websocket/src/test/resources/json/SmallModel.json -------------------------------------------------------------------------------- /java-websocket/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/java-websocket/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphWalker/graphwalker-example/HEAD/pom.xml --------------------------------------------------------------------------------