mirror of
https://github.com/Qortal/qortal.git
synced 2025-02-15 19:55:48 +00:00
This allows them to be excluded from final built package. pom.xml and .classpath updated Unable to test due to lack of JUnit 5 in Eclipse Neon
17 lines
310 B
Java
17 lines
310 B
Java
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();
|
|
}
|
|
|
|
}
|