< prev index next >

test/java/nio/file/attribute/FileTime/Basic.java

Print this page




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 6844313 8011647
  26  * @summary Unit test for java.nio.file.FileTime

  27  */
  28 
  29 
  30 import java.nio.file.attribute.FileTime;
  31 import java.time.Instant;
  32 import java.util.concurrent.TimeUnit;
  33 import static java.util.concurrent.TimeUnit.*;
  34 import java.util.Random;
  35 import java.util.EnumSet;
  36 
  37 public class Basic {
  38 
  39     static final Random rand = new Random();
  40 
  41     public static void main(String[] args) {
  42         long now = System.currentTimeMillis();
  43         long tomorrowInDays = TimeUnit.DAYS.convert(now, MILLISECONDS) + 1;
  44         long yesterdayInDays = TimeUnit.DAYS.convert(now, MILLISECONDS) - 1;
  45 
  46         Instant nowInstant = Instant.ofEpochMilli(now);




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 6844313 8011647
  26  * @summary Unit test for java.nio.file.FileTime
  27  * @key randomness
  28  */
  29 
  30 
  31 import java.nio.file.attribute.FileTime;
  32 import java.time.Instant;
  33 import java.util.concurrent.TimeUnit;
  34 import static java.util.concurrent.TimeUnit.*;
  35 import java.util.Random;
  36 import java.util.EnumSet;
  37 
  38 public class Basic {
  39 
  40     static final Random rand = new Random();
  41 
  42     public static void main(String[] args) {
  43         long now = System.currentTimeMillis();
  44         long tomorrowInDays = TimeUnit.DAYS.convert(now, MILLISECONDS) + 1;
  45         long yesterdayInDays = TimeUnit.DAYS.convert(now, MILLISECONDS) - 1;
  46 
  47         Instant nowInstant = Instant.ofEpochMilli(now);


< prev index next >