當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Julia Test.@test_deprecated用法及代碼示例


用法:

@test_deprecated [pattern] expression

--depwarn=yes 時,測試 expression 發出棄用警告並返回 expression 的值。日誌消息字符串將與默認為 r"deprecated"ipattern 匹配。

--depwarn=no 時,隻需返回執行 expression 的結果。當 --depwarn=error 時,檢查是否拋出了 ErrorException。

例子

# Deprecated in julia 0.7
@test_deprecated num2hex(1)

# The returned value can be tested by chaining with @test:
@test (@test_deprecated num2hex(1)) == "0000000000000001"

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Test.@test_deprecated — Macro。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。