3
0
mirror of https://github.com/Qortal/qortal.git synced 2025-02-19 05:35:48 +00:00
qortal/tests/test/BlockchainTests.java

17 lines
310 B
Java
Raw Normal View History

package test;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
import qora.block.BlockChain;
import repository.DataException;
public class BlockchainTests extends Common {
@Test
public void testValidateOrRebuild() throws DataException {
BlockChain.validate();
}
}