Ejemplo n.º 1
0
 public EchoCommandTests(HttpCommandsFixture <SampleApiServerConfig> fixture)
 {
     _serverConfig = fixture.Config;
 }
Ejemplo n.º 2
0
 public HeadCommandTests(HttpCommandsFixture <HeadCommandsConfig> headCommandsFixture)
     :  base(new HeadCommand(new MockedFileSystem()))
 {
     _config = headCommandsFixture.Config;
 }
Ejemplo n.º 3
0
 public OptionsCommandTests(HttpCommandsFixture <OptionsCommandsConfig> optionsCommandsFixture)
     : base(new OptionsCommand(new MockedFileSystem()))
 {
     _config = optionsCommandsFixture.Config;
 }
Ejemplo n.º 4
0
 public DeleteCommandTests(HttpCommandsFixture <DeleteCommandsConfig> deleteCommandsFixture)
     : base(new DeleteCommand(_fileSystem))
 {
     _config = deleteCommandsFixture.Config;
 }
Ejemplo n.º 5
0
 public ChangeDirectoryCommandTests(HttpCommandsFixture <SampleApiServerConfig> fixture)
 {
     _serverConfig = fixture.Config;
 }
Ejemplo n.º 6
0
 public GetCommandTests(HttpCommandsFixture <GetCommandsConfig> getCommandsFixture)
     : base(new GetCommand(new MockedFileSystem()))
 {
     _config = getCommandsFixture.Config;
 }
Ejemplo n.º 7
0
 public PatchCommandTests(HttpCommandsFixture <PatchCommandsConfig> PatchCommandsFixture)
     : base(new PatchCommand(_fileSystem))
 {
     _config = PatchCommandsFixture.Config;
 }
 public SetBearerCommandTest(HttpCommandsFixture <SampleApiServerConfig> fixture)
 {
     _serverConfig = fixture.Config;
 }
Ejemplo n.º 9
0
 public PostCommandTests(HttpCommandsFixture <PostCommandsConfig> postCommandsFixture)
     : base(new PostCommand(_fileSystem))
 {
     _config = postCommandsFixture.Config;
 }