7 İşlemeler

4 değiştirilmiş dosya ile 17 ekleme ve 0 silme
  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 Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

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

+ 6
- 0
src/login_module.c Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

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

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

Yükleniyor…
İptal
Kaydet