File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
src/test/java/com/iexec/blockchain/tool Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright 2023-2023 IEXEC BLOCKCHAIN TECH
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ package com .iexec .blockchain .tool ;
18+
19+ import org .junit .jupiter .api .Test ;
20+
21+ import static org .assertj .core .api .Assertions .assertThat ;
22+
23+ class Web3jServiceTests {
24+ private final ChainConfig chainConfig = ChainConfig
25+ .builder ()
26+ .chainId (134 )
27+ .isSidechain (true )
28+ .nodeAddress ("https://bellecour.iex.ec" )
29+ .hubAddress ("0x3eca1B216A7DF1C7689aEb259fFB83ADFB894E7f" )
30+ .blockTime (5 )
31+ .gasPriceMultiplier (1.0f )
32+ .gasPriceCap (22_000_000_000L )
33+ .build ();
34+
35+ @ Test
36+ void shouldCreateInstance () {
37+ assertThat (new Web3jService (chainConfig )).isNotNull ();
38+ }
39+ }
You can’t perform that action at this time.
0 commit comments