final BasicFileAttributes attrs = PROVIDER.readAttributes( path3, BasicFileAttributes.class );
assertThat( attrs.isDirectory() ).isFalse();
assertThat( attrs.isRegularFile() ).isTrue();
assertThat( attrs.creationTime() ).isNotNull();
assertThat( attrs.lastModifiedTime() ).isNotNull();
assertThat( attrs.size() ).isEqualTo( 15L );
try {
PROVIDER.readAttributes( PROVIDER.getPath( URI.create( "git://user_branch@readattrs-test-repo/not_exists.txt" ) ), BasicFileAttributes.class );
failBecauseExceptionWasNotThrown( NoSuchFileException.class );