File tree 5 files changed +76
-0
lines changed
main/java/org/veriblock/sdk/mock
test/java/org/veriblock/sdk/mock
5 files changed +76
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Gradle
2
+ .idea /** /gradle.xml
3
+ .idea /** /libraries
4
+ .gradle /
5
+ build /
6
+
7
+ # Eclipse
8
+ .settings
9
+ .classpath
10
+ .project
11
+ bin /
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id " java"
3
+ id " idea"
4
+ id " java-library"
5
+ }
6
+
7
+ dependencies {
8
+ compile project(' :core' )
9
+
10
+ testCompile ' junit:junit:4.12'
11
+ }
12
+
13
+ test {
14
+ testLogging {
15
+ showStackTraces = true
16
+ showStandardStreams = true
17
+ }
18
+ }
Original file line number Diff line number Diff line change
1
+ // VeriBlock Blockchain Project
2
+ // Copyright 2017-2018 VeriBlock, Inc
3
+ // Copyright 2018-2019 Xenios SEZC
4
+ // All rights reserved.
5
+ // https://www.veriblock.org
6
+ // Distributed under the MIT software license, see the accompanying
7
+ // file LICENSE or http://www.opensource.org/licenses/mit-license.php.
8
+
9
+ package org .veriblock .sdk .mock ;
10
+
11
+ // Also known as APM
12
+ public class AltChainPopMiner {
13
+ }
Original file line number Diff line number Diff line change
1
+ // VeriBlock Blockchain Project
2
+ // Copyright 2017-2018 VeriBlock, Inc
3
+ // Copyright 2018-2019 Xenios SEZC
4
+ // All rights reserved.
5
+ // https://www.veriblock.org
6
+ // Distributed under the MIT software license, see the accompanying
7
+ // file LICENSE or http://www.opensource.org/licenses/mit-license.php.
8
+
9
+ package org .veriblock .sdk .mock ;
10
+
11
+ import org .junit .After ;
12
+ import org .junit .Assert ;
13
+ import org .junit .Before ;
14
+ import org .junit .Test ;
15
+
16
+ public class AltChainPopMinerTest {
17
+
18
+ private AltChainPopMiner apm ;
19
+
20
+ @ Before
21
+ public void setUp () {
22
+ apm = new AltChainPopMiner ();
23
+ }
24
+
25
+ @ After
26
+ public void tearDown () {
27
+ }
28
+
29
+ @ Test
30
+ public void dummyTest () {
31
+ Assert .assertTrue (true );
32
+ }
33
+ }
Original file line number Diff line number Diff line change @@ -2,5 +2,6 @@ include 'core'
2
2
include ' alt-integration-adapter-java'
3
3
include ' alt-integration-grpc-client'
4
4
include ' alt-integration-grpc-service'
5
+ include ' mock-pop-mining'
5
6
6
7
rootProject. name = ' alt-integration'
You can’t perform that action at this time.
0 commit comments