llvm/libc/test/src/string/strcmp_test.cpp

//===-- Unittests for strcmp ----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "src/string/strcmp.h"
#include "test/UnitTest/Test.h"

TEST(LlvmLibcStrCmpTest, EmptyStringsShouldReturnZero) {}

TEST(LlvmLibcStrCmpTest, EmptyStringShouldNotEqualNonEmptyString) {}

TEST(LlvmLibcStrCmpTest, EqualStringsShouldReturnZero) {}

TEST(LlvmLibcStrCmpTest, ShouldReturnResultOfFirstDifference) {}

TEST(LlvmLibcStrCmpTest, CapitalizedLetterShouldNotBeEqual) {}

TEST(LlvmLibcStrCmpTest, UnequalLengthStringsShouldNotReturnZero) {}

TEST(LlvmLibcStrCmpTest, StringArgumentSwapChangesSign) {}

TEST(LlvmLibcStrCmpTest, Case) {}