FileTest names fixed with phrase method/API changes (#801)

* made changes to java reflection

* removed redundant method makeSound in Animal abstract class

* added project for play-framework article

* added project for regex

* changed regex project from own model to core-java

* added project for routing in play

* made changes to regex project

* refactored code for REST API with Play project

* refactored student store indexing to zero base

* added unit tests, removed bad names

* added NIO Selector project under core-java module

* requested changes made

* added project for nio2

* standardized exception based tests

* fixed exception based tests

* removed redundant files

* added network interface project

* used UUID other than timestamps

* fixed network interface tests

* removed filetest change

* made changes to NIO2 FileTest names
This commit is contained in:
Egima profile 2016-11-04 10:41:57 +03:00 committed by Grzegorz Piwowarek
parent 8ce7e1f588
commit 8848d98809

View File

@ -32,7 +32,7 @@ public class FileTest {
} }
@Test @Test
public void givenExistentDirPath_whenConfirmsNotRegularFile_thenCorrect() { public void givenDirPath_whenConfirmsNotRegularFile_thenCorrect() {
Path p = Paths.get(HOME); Path p = Paths.get(HOME);
assertFalse(Files.isRegularFile(p)); assertFalse(Files.isRegularFile(p));
} }
@ -118,7 +118,7 @@ public class FileTest {
} }
@Test @Test
public void givenFilePath_whenCreatesTempFileWithDefaultsNaming_thenCorrect() throws IOException { public void givenPath_whenCreatesTempFileWithDefaults_thenCorrect() throws IOException {
Path p = Paths.get(HOME + "/"); Path p = Paths.get(HOME + "/");
p = Files.createTempFile(p, null, null); p = Files.createTempFile(p, null, null);
// like 8600179353689423985.tmp // like 8600179353689423985.tmp
@ -161,7 +161,9 @@ public class FileTest {
@Test(expected = NoSuchFileException.class) @Test(expected = NoSuchFileException.class)
public void givenInexistentFile_whenDeleteFails_thenCorrect() throws IOException { public void givenInexistentFile_whenDeleteFails_thenCorrect() throws IOException {
Path p = Paths.get(HOME + "/inexistentFile.txt"); Path p = Paths.get(HOME + "/inexistentFile.txt");
assertFalse(Files.exists(p));
Files.delete(p); Files.delete(p);
} }
@Test @Test