Package br.com.objectos.way.etc.model

Examples of br.com.objectos.way.etc.model.Dir


*/
@Test
public class DirTest {

  public void file_at_should_return_file_at_subdir() {
    Dir dir = new Dir("/tmp");

    assertThat(dir.getFile().exists(), is(true));

    File file = dir.getFileAt("/whatever/dummy.txt");
    assertThat(file.getAbsolutePath(), equalTo("/tmp/whatever/dummy.txt"));
  }
View Full Code Here

TOP

Related Classes of br.com.objectos.way.etc.model.Dir

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.