88import org .junit .AfterClass ;
99import org .junit .Assert ;
1010import org .junit .BeforeClass ;
11+ import org .junit .Ignore ;
1112import org .junit .Test ;
1213import org .springframework .context .annotation .AnnotationConfigApplicationContext ;
1314import org .tron .common .utils .ByteArray ;
3233import org .tron .protos .Protocol .Transaction .Contract .ContractType ;
3334import org .tron .protos .Protocol .Witness ;
3435
36+ @ Ignore
3537public class StoreAPITest {
3638
3739 public static final String ACCOUNT_ADDRESS_ONE = "121212a9cf" ;
@@ -101,7 +103,7 @@ public class StoreAPITest {
101103 private static String dbPath = "output_StoreAPI_test" ;
102104
103105 static {
104- Args .setParam (new String [] {"-d" , dbPath , "-w" }, "config-test-index.conf" );
106+ Args .setParam (new String []{"-d" , dbPath , "-w" }, "config-test-index.conf" );
105107 context = new AnnotationConfigApplicationContext (DefaultConfig .class );
106108 }
107109
@@ -123,7 +125,9 @@ public static void removeDb() {
123125 context .destroy ();
124126 }
125127
126- /** initAssetIssue. */
128+ /**
129+ * initAssetIssue.
130+ */
127131 private static void initAssetIssue () {
128132 assetIssue1 =
129133 getBuildAssetIssueContract (
@@ -163,7 +167,9 @@ private static AssetIssueContract getBuildAssetIssueContract(
163167 .build ();
164168 }
165169
166- /** initTransaction. */
170+ /**
171+ * initTransaction.
172+ */
167173 private static void initTransaction () {
168174 transaction1 =
169175 getBuildTransaction (
@@ -208,7 +214,9 @@ private static TransferContract getBuildTransferContract(String ownerAddress, St
208214 .build ();
209215 }
210216
211- /** initWitness. */
217+ /**
218+ * initWitness.
219+ */
212220 private static void initWitness () {
213221 witness1 =
214222 getBuildWitness (
@@ -244,7 +252,9 @@ private static Witness getBuildWitness(
244252 .build ();
245253 }
246254
247- /** initBlock. */
255+ /**
256+ * initBlock.
257+ */
248258 private static void initBlock () {
249259 block1 =
250260 getBuildBlock (
@@ -285,7 +295,10 @@ private static Block getBuildBlock(
285295 .addTransactions (transactionNext )
286296 .build ();
287297 }
288- /** initAccount. */
298+
299+ /**
300+ * initAccount.
301+ */
289302 private static void initAccount () {
290303 account1 = getBuildAccount (ACCOUNT_ADDRESS_ONE , ACCOUNT_NAME_ONE );
291304 addAccountToStore (account1 );
0 commit comments