-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: adapt StatsSigningTestingTool to work with Bytes wrapper fo…
…r transactions (#17144) Signed-off-by: Mustafa Uzun <[email protected]> Signed-off-by: Ivan Kavaldzhiev <[email protected]> Co-authored-by: Mustafa Uzun <[email protected]> Co-authored-by: Roger Barker <[email protected]>
- Loading branch information
1 parent
307b469
commit 84fb83b
Showing
6 changed files
with
441 additions
and
19 deletions.
There are no files selected for viewing
24 changes: 23 additions & 1 deletion
24
platform-sdk/platform-apps/tests/StatsSigningTestingTool/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,30 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
/* | ||
* Copyright (C) 2024-2025 Hedera Hashgraph, LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
plugins { id("org.hiero.gradle.module.application") } | ||
|
||
// Remove the following line to enable all 'javac' lint checks that we have turned on by default | ||
// and then fix the reported issues. | ||
tasks.withType<JavaCompile>().configureEach { options.compilerArgs.add("-Xlint:-cast") } | ||
|
||
application.mainClass = "com.swirlds.demo.stats.signing.StatsSigningTestingToolMain" | ||
|
||
testModuleInfo { | ||
requires("org.assertj.core") | ||
requires("org.junit.jupiter.api") | ||
requires("org.mockito") | ||
requires("org.junit.jupiter.params") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.