Use a Collection instead of a List to hold the command and arguments
This commit is contained in:
parent
e601ffab91
commit
35287d7d6d
2 changed files with 16 additions and 12 deletions
|
@ -31,16 +31,10 @@ class ExecOperationTest {
|
|||
private static final String FOO = "foo";
|
||||
|
||||
@Test
|
||||
void testCat() throws Exception {
|
||||
var tmpFile = new File("hello.tmp");
|
||||
tmpFile.deleteOnExit();
|
||||
new ExecOperation()
|
||||
.fromProject(new Project())
|
||||
.timeout(10)
|
||||
.command("touch", tmpFile.getName())
|
||||
.execute();
|
||||
|
||||
assertThat(tmpFile).exists();
|
||||
void testCommand() {
|
||||
var op = new ExecOperation().fromProject(new WebProject())
|
||||
.command(FOO, "bar");
|
||||
assertThat(op.command()).isEqualTo(List.of(FOO, "bar"));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue