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

Examples of org.springframework.boot.cli.command.test.TestCommand.run()


  @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");
  }

  @Test
  public void appAndTestsInOneFile() throws Exception {
    String output = this.cli.test("book_and_tests.groovy");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.