7 コミット

4個のファイルの変更17行の追加0行の削除
分割表示
  1. +6
    -0
      CHANGELOG.md
  2. +1
    -0
      config.txt
  3. +6
    -0
      src/login_module.c
  4. +4
    -0
      tests/login_test_cases.md

+ 6
- 0
CHANGELOG.md ファイルの表示

@@ -0,0 +1,6 @@
# Changelog

## v1.0.0

- Integrated login feature after resolving the configuration conflict.
- Added login test cases after rebasing the test branch on the latest main branch.

+ 1
- 0
config.txt ファイルの表示

@@ -0,0 +1 @@
mode=login-integrated

+ 6
- 0
src/login_module.c ファイルの表示

@@ -0,0 +1,6 @@
/* Login feature source file for Git branch practice. */

int Login_CheckCredentials(const char *user, const char *password)
{
return (user != 0) && (password != 0);
}

+ 4
- 0
tests/login_test_cases.md ファイルの表示

@@ -0,0 +1,4 @@
# Login Test Cases

- Verify valid credentials can enter the login flow.
- Verify null credentials are rejected.

読み込み中…
キャンセル
保存