├── .gitignore ├── LICENSE ├── README.md ├── StarWars.Api ├── .gitignore ├── Controllers │ └── GraphQLController.cs ├── GraphiQL │ ├── app.css │ └── app.js ├── MappingProfile.cs ├── Models │ ├── Character.cs │ ├── CharacterInterface.cs │ ├── Droid.cs │ ├── DroidType.cs │ ├── EpisodeEnum.cs │ ├── Episodes.cs │ ├── GraphQLQuery.cs │ ├── Human.cs │ ├── HumanType.cs │ ├── StarWarsQuery.cs │ └── StarWarsSchema.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── StarWars.Api.csproj ├── Startup.cs ├── Views │ └── GraphQL │ │ └── Index.cshtml ├── appsettings.json ├── package.json ├── web.config └── webpack.config.js ├── StarWars.Core ├── Data │ ├── IBaseRepository.cs │ ├── ICharacterRepository.cs │ ├── IDroidRepository.cs │ ├── IEntity.cs │ ├── IEpisodeRepository.cs │ ├── IHumanRepository.cs │ └── IPlanetRepository.cs ├── Logic │ ├── ITrilogyHeroes.cs │ └── TrilogyHeroes.cs ├── Models │ ├── Character.cs │ ├── CharacterEpisode.cs │ ├── CharacterFriend.cs │ ├── Droid.cs │ ├── Episode.cs │ ├── Human.cs │ └── Planet.cs ├── Properties │ └── AssemblyInfo.cs └── StarWars.Core.csproj ├── StarWars.Data ├── EntityFramework │ ├── Migrations │ │ ├── 20170215075510_Inital.Designer.cs │ │ ├── 20170215075510_Inital.cs │ │ ├── 20170305213221_Full.Designer.cs │ │ ├── 20170305213221_Full.cs │ │ ├── 20170322183920_Hero.Designer.cs │ │ ├── 20170322183920_Hero.cs │ │ └── StarWarsContextModelSnapshot.cs │ ├── Repositories │ │ ├── BaseRepository.cs │ │ ├── CharacterRepository.cs │ │ ├── DroidRepository.cs │ │ ├── EpisodeRepository.cs │ │ ├── HumanRepository.cs │ │ └── PlanetRepository.cs │ ├── Seed │ │ └── StarWarsSeedData.cs │ ├── StarWarsContext.cs │ └── Workaround │ │ └── Program.cs ├── InMemory │ └── DroidRepository.cs ├── Properties │ └── AssemblyInfo.cs └── StarWars.Data.csproj ├── StarWars.sln ├── Tests ├── StarWars.Tests.Integration │ ├── Api │ │ └── Controllers │ │ │ └── GraphQLControllerShould.cs │ ├── Data │ │ └── EntityFramework │ │ │ └── StarWarsContextShould.cs │ └── StarWars.Tests.Integration.csproj └── StarWars.Tests.Unit │ ├── Api │ ├── Controllers │ │ └── GraphQLControllerShould.cs │ └── Models │ │ ├── DroidTypeShould.cs │ │ ├── GraphQLQueryShould.cs │ │ └── StarWarsQueryShould.cs │ ├── Data │ ├── EntityFramework │ │ └── Repositories │ │ │ ├── CharacterRepositoryShould.cs │ │ │ ├── DroidRepositoryShould.cs │ │ │ ├── EpisodeRepositoryShould.cs │ │ │ ├── HumanRepositoryShould.cs │ │ │ └── PlanetRepositoryShould.cs │ └── InMemory │ │ └── DroidRepositoryShould.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── StarWars.Tests.Unit.csproj ├── integration-tests.bat └── unit-tests.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/README.md -------------------------------------------------------------------------------- /StarWars.Api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/.gitignore -------------------------------------------------------------------------------- /StarWars.Api/Controllers/GraphQLController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Controllers/GraphQLController.cs -------------------------------------------------------------------------------- /StarWars.Api/GraphiQL/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/GraphiQL/app.css -------------------------------------------------------------------------------- /StarWars.Api/GraphiQL/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/GraphiQL/app.js -------------------------------------------------------------------------------- /StarWars.Api/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/MappingProfile.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/Character.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/CharacterInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/CharacterInterface.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/Droid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/Droid.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/DroidType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/DroidType.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/EpisodeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/EpisodeEnum.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/Episodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/Episodes.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/GraphQLQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/GraphQLQuery.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/Human.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/Human.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/HumanType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/HumanType.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/StarWarsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/StarWarsQuery.cs -------------------------------------------------------------------------------- /StarWars.Api/Models/StarWarsSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Models/StarWarsSchema.cs -------------------------------------------------------------------------------- /StarWars.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Program.cs -------------------------------------------------------------------------------- /StarWars.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /StarWars.Api/StarWars.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/StarWars.Api.csproj -------------------------------------------------------------------------------- /StarWars.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Startup.cs -------------------------------------------------------------------------------- /StarWars.Api/Views/GraphQL/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/Views/GraphQL/Index.cshtml -------------------------------------------------------------------------------- /StarWars.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/appsettings.json -------------------------------------------------------------------------------- /StarWars.Api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/package.json -------------------------------------------------------------------------------- /StarWars.Api/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/web.config -------------------------------------------------------------------------------- /StarWars.Api/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Api/webpack.config.js -------------------------------------------------------------------------------- /StarWars.Core/Data/IBaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Data/IBaseRepository.cs -------------------------------------------------------------------------------- /StarWars.Core/Data/ICharacterRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Data/ICharacterRepository.cs -------------------------------------------------------------------------------- /StarWars.Core/Data/IDroidRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Data/IDroidRepository.cs -------------------------------------------------------------------------------- /StarWars.Core/Data/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Data/IEntity.cs -------------------------------------------------------------------------------- /StarWars.Core/Data/IEpisodeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Data/IEpisodeRepository.cs -------------------------------------------------------------------------------- /StarWars.Core/Data/IHumanRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Data/IHumanRepository.cs -------------------------------------------------------------------------------- /StarWars.Core/Data/IPlanetRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Data/IPlanetRepository.cs -------------------------------------------------------------------------------- /StarWars.Core/Logic/ITrilogyHeroes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Logic/ITrilogyHeroes.cs -------------------------------------------------------------------------------- /StarWars.Core/Logic/TrilogyHeroes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Logic/TrilogyHeroes.cs -------------------------------------------------------------------------------- /StarWars.Core/Models/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Models/Character.cs -------------------------------------------------------------------------------- /StarWars.Core/Models/CharacterEpisode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Models/CharacterEpisode.cs -------------------------------------------------------------------------------- /StarWars.Core/Models/CharacterFriend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Models/CharacterFriend.cs -------------------------------------------------------------------------------- /StarWars.Core/Models/Droid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Models/Droid.cs -------------------------------------------------------------------------------- /StarWars.Core/Models/Episode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Models/Episode.cs -------------------------------------------------------------------------------- /StarWars.Core/Models/Human.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Models/Human.cs -------------------------------------------------------------------------------- /StarWars.Core/Models/Planet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Models/Planet.cs -------------------------------------------------------------------------------- /StarWars.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StarWars.Core/StarWars.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Core/StarWars.Core.csproj -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Migrations/20170215075510_Inital.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Migrations/20170215075510_Inital.Designer.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Migrations/20170215075510_Inital.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Migrations/20170215075510_Inital.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Migrations/20170305213221_Full.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Migrations/20170305213221_Full.Designer.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Migrations/20170305213221_Full.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Migrations/20170305213221_Full.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Migrations/20170322183920_Hero.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Migrations/20170322183920_Hero.Designer.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Migrations/20170322183920_Hero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Migrations/20170322183920_Hero.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Migrations/StarWarsContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Migrations/StarWarsContextModelSnapshot.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Repositories/BaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Repositories/BaseRepository.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Repositories/CharacterRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Repositories/CharacterRepository.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Repositories/DroidRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Repositories/DroidRepository.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Repositories/EpisodeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Repositories/EpisodeRepository.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Repositories/HumanRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Repositories/HumanRepository.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Repositories/PlanetRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Repositories/PlanetRepository.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Seed/StarWarsSeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Seed/StarWarsSeedData.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/StarWarsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/StarWarsContext.cs -------------------------------------------------------------------------------- /StarWars.Data/EntityFramework/Workaround/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/EntityFramework/Workaround/Program.cs -------------------------------------------------------------------------------- /StarWars.Data/InMemory/DroidRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/InMemory/DroidRepository.cs -------------------------------------------------------------------------------- /StarWars.Data/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StarWars.Data/StarWars.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.Data/StarWars.Data.csproj -------------------------------------------------------------------------------- /StarWars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/StarWars.sln -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Integration/Api/Controllers/GraphQLControllerShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Integration/Api/Controllers/GraphQLControllerShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Integration/Data/EntityFramework/StarWarsContextShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Integration/Data/EntityFramework/StarWarsContextShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Integration/StarWars.Tests.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Integration/StarWars.Tests.Integration.csproj -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Api/Controllers/GraphQLControllerShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Api/Controllers/GraphQLControllerShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Api/Models/DroidTypeShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Api/Models/DroidTypeShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Api/Models/GraphQLQueryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Api/Models/GraphQLQueryShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Api/Models/StarWarsQueryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Api/Models/StarWarsQueryShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/CharacterRepositoryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/CharacterRepositoryShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/DroidRepositoryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/DroidRepositoryShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/EpisodeRepositoryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/EpisodeRepositoryShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/HumanRepositoryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/HumanRepositoryShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/PlanetRepositoryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Data/EntityFramework/Repositories/PlanetRepositoryShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Data/InMemory/DroidRepositoryShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Data/InMemory/DroidRepositoryShould.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/StarWars.Tests.Unit/StarWars.Tests.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/Tests/StarWars.Tests.Unit/StarWars.Tests.Unit.csproj -------------------------------------------------------------------------------- /integration-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/integration-tests.bat -------------------------------------------------------------------------------- /unit-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacekKosciesza/StarWars/HEAD/unit-tests.bat --------------------------------------------------------------------------------