{!See https://docs.google.com/document/d/1takg_GmIBBKKTj-GHZCwzxohpQz7Bhekivkk72kYMtE/edit for reference implementation of OneTrust, dataLayer and GTM} {!OneTrust Cookies Consent} {!OneTrust Cookies Consent end} {!dataLayer initialization push} {!dataLayer initialization push end} {!Google Tag Manager} {!Google Tag Manager end} Method Expect | Test Framework | 2.0.1-exp.2
docs.unity3d.com
"{0}"의 검색 결과

    목차 표시/숨기기

    Method Expect

    Expect(LogType, string)

    Verifies that a log message of a specified type appears in the log. A test won't fail from an expected error, assertion, or exception log message. It does fail if an expected message does not appear in the log. If multiple LogAssert.Expect are used to expect multiple messages, they are expected to be logged in that order.

    선언
    public static void Expect(LogType type, string message)
    파라미터
    타입 이름 설명
    LogType type

    A type of log to expect. It can take one of the LogType enum values.

    string message

    A string value that should equate to the expected message.

    예
    [Test]
    public void LogAssertExample()
    {
        // Expect a regular log message
        LogAssert.Expect(LogType.Log, "Log message");
    
        // The test fails without the following expected log message
        Debug.Log("Log message");
    
        // An error log
        Debug.LogError("Error message");
    
        // Without expecting an error log, the test would fail
        LogAssert.Expect(LogType.Error, "Error message");
    }

    Expect(LogType, Regex)

    Verifies that a log message of a specified type appears in the log. A test won't fail from an expected error, assertion, or exception log message. It does fail if an expected message does not appear in the log.

    선언
    public static void Expect(LogType type, Regex message)
    파라미터
    타입 이름 설명
    LogType type

    A type of log to expect. It can take one of the LogType enum values.

    Regex message

    A regular expression pattern to match the expected message.

    문서 개요
    맨 위로
    Copyright © 2023 Unity Technologies — 상표 및 이용약관
    • 법률정보
    • 개인정보처리방침
    • 쿠키
    • 내 개인정보 판매 금지
    • Your Privacy Choices (Cookie Settings)