feat: nablarch-testing-integration モジュールの初期構築 - #1
Open
kiyotis wants to merge 40 commits into
Open
Conversation
…YamlTest(32) all pass
…actHttpRequestTemplate(22) all pass
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…format/ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- src/test/java/nablarch/test/core/reader/testdata.txt を追加 - src/test/java/nablarch/test/core/reader/BasicTestDataParserTest.xls を追加 - src/test/java/nablarch/test/core/reader/YamlTestDataParserTest/ 配下16件を追加 - pom.xml: surefire reuseForks=false / forkCount=1 を追加(H2インメモリDB汚染対策) - README.md: 実行方法の説明を更新 結果: Tests run: 546, Failures: 0, Errors: 0, Skipped: 18 / BUILD SUCCESS Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…I と Files.list() リークを修正 - pom.xml: json-schema-validator 3.0.2 → 1.5.9(yaml 側と統一、3.x は tools.jackson 依存で互換なし) - YamlSchemaValidationTest: SchemaRegistry/SpecificationVersion → JsonSchemaFactory/SpecVersion API に書き換え - YamlSchemaValidationTest: Files.list() を try-with-resources で囲いディレクトリハンドルリークを修正 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
nablarch-testing-converterとnablarch-testing-yamlの両方に依存します。nablarch-testing本体に置くと、本体がconverter・yamlに依存することになり、converter・yamlがすでに本体に依存しているため循環参照になります。nablarch-testing-integrationを新規作成してここに置きます。What
XxxTest(Excelベース、本体から流用)とXxxYamlTest(YAMLサブ、getTestConfig()オーバーライドのみ追加)が対になっています。Testing
mvn installを実行し、YAML サブクラス20本すべてが BUILD SUCCESS であることを確認しました。References