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.

Loading…
取消
儲存