package org.test4j.hamcrest.iassert.object.impl; import java.io.File; import java.util.UUID; import org.test4j.testng.Test4J; import org.testng.annotations.Test; @Test(groups = { "test4j", "assertion" }) public class FileAssertTest extends Test4J { @Test(expectedExceptions = { AssertionError.class }) public void isExists_AssertionError() { String tmp = System.getProperty("java.io.tmpdir"); String file = tmp + File.separatorChar + UUID.randomUUID().toString() + ".txt"; want.file(new File(file)).isExists(); } public void unExists() { String tmp = System.getProperty("java.io.tmpdir"); String file = tmp + File.separatorChar + UUID.randomUUID().toString() + ".txt"; want.file(new File(file)).unExists(); } @Test public void testNameContain() { File file = new File(System.getProperty("user.dir") + "/src/test/java"); want.file(file).nameContain("java"); } @Test public void testNameEq() { File file = new File(System.getProperty("user.dir") + "/src/test/java"); want.file(file).nameContain("java"); } }