Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

テストコードをAAAパターンに従って整理する #1749

Open
tsuna-can-se opened this issue Dec 25, 2024 · 0 comments
Open

テストコードをAAAパターンに従って整理する #1749

tsuna-can-se opened this issue Dec 25, 2024 · 0 comments
Labels
target: Azure AD B2C Auth Azure AD B2C認証の要件別サンプル(コード)に関係がある target: Dressca サンプルアプリケーションDresscaに関係がある

Comments

@tsuna-can-se
Copy link
Contributor

概要

現状 AAA パターンを適用できていません。
テストコードの見通しをよくするためにも、 AAA パターンに従ってテストコードを整理するべきです。

詳細 / 機能詳細(オプション)

まず既存のテストコードに以下のコメントを挿入します。

// Arrange

// Act

// Assert

Arrange:テスト実行前の準備。モックの構築や引数オブジェクトの構築などを実施します。
Act:テスト対象の処理を実行します。
Assert:結果を検証します。検証は 1 つのテストメソッドに対して論理的に 1 つ(物理的なAssertが複数にわたることはある)です。

各コメントの下に、該当するテストの処理を実装します。
Act と Assert を 1 行で実行する、などの短縮は NG とします。

完了条件

  • テストコードが AAA パターンにしたがって整理されていること
@tsuna-can-se tsuna-can-se added target: Azure AD B2C Auth Azure AD B2C認証の要件別サンプル(コード)に関係がある target: Dressca サンプルアプリケーションDresscaに関係がある labels Dec 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
target: Azure AD B2C Auth Azure AD B2C認証の要件別サンプル(コード)に関係がある target: Dressca サンプルアプリケーションDresscaに関係がある
Projects
None yet
Development

No branches or pull requests

1 participant