/* * This file is part of Fim - File Integrity Manager * * Copyright (C) 2017 Etienne Vrignaud * * Fim is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Fim is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Fim. If not, see <http://www.gnu.org/licenses/>. */ package org.fim.tooling; public class TestConstants { public static final int _1_KB = 1_024; public static final int _2_KB = 2 * _1_KB; public static final int _4_KB = 4 * _1_KB; public static final int _5_KB = 5 * _1_KB; public static final int _6_KB = 6 * _1_KB; public static final int _8_KB = 8 * _1_KB; public static final int _10_KB = 10 * _1_KB; public static final int _12_KB = 12 * _1_KB; public static final int _16_KB = 16 * _1_KB; public static final int _20_KB = 20 * _1_KB; public static final int _24_KB = 24 * _1_KB; public static final int _30_KB = 30 * _1_KB; public static final int _512_KB = 512 * _1_KB; public static final int _1_MB = 1_024 * _1_KB; public static final int _2_MB = 2 * _1_MB; public static final int _3_MB = 3 * _1_MB; public static final int _30_MB = 30 * _1_MB; public static final int _60_MB = 60 * _1_MB; public static final int _100_MB = 100 * _1_MB; public static final String NO_HASH = "no_hash"; }