You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
rocksdb/java/org/rocksdb/test/SizeUnitTest.java

28 lines
933 B

// Copyright (c) 2014, Facebook, Inc. All rights reserved.
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree. An additional grant
// of patent rights can be found in the PATENTS file in the same directory.
package org.rocksdb.test;
import org.junit.Test;
import org.rocksdb.util.SizeUnit;
import static org.assertj.core.api.Assertions.assertThat;
public class SizeUnitTest {
public static final long COMPUTATION_UNIT = 1024L;
@Test
public void sizeUnit() {
assertThat(SizeUnit.KB).isEqualTo(COMPUTATION_UNIT);
assertThat(SizeUnit.MB).isEqualTo(
SizeUnit.KB * COMPUTATION_UNIT);
assertThat(SizeUnit.GB).isEqualTo(
SizeUnit.MB * COMPUTATION_UNIT);
assertThat(SizeUnit.TB).isEqualTo(
SizeUnit.GB * COMPUTATION_UNIT);
assertThat(SizeUnit.PB).isEqualTo(
SizeUnit.TB * COMPUTATION_UNIT);
}
}