Package org.springframework.boot.cli.command.test

Examples of org.springframework.boot.cli.command.test.TestCommand


    assertThat(output, containsString("No tests found"));
  }

  @Test
  public void noFile() throws Exception {
    TestCommand command = new TestCommand();
    this.thrown.expect(RuntimeException.class);
    this.thrown.expectMessage("Can't find nothing.groovy");
    command.run("nothing.groovy");
  }
View Full Code Here


    this.commands.add(future.get(this.timeout, TimeUnit.MILLISECONDS));
    return getOutput();
  }

  public String test(String... args) throws Exception {
    Future<TestCommand> future = submitCommand(new TestCommand(), args);
    this.commands.add(future.get(this.timeout, TimeUnit.MILLISECONDS));
    return getOutput();
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.cli.command.test.TestCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.