-
Notifications
You must be signed in to change notification settings - Fork 35
T_CodeJam_DebugEnumCode
Andrew Koryavchenko edited this page Jun 17, 2018
·
3 revisions
Enum assertions class.
System.Object
CodeJam.DebugEnumCode
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static class DebugEnumCode
VB
Public NotInheritable Class DebugEnumCode
F#
[<AbstractClassAttribute>]
[<SealedAttribute>]
type DebugEnumCode = class end
The DebugEnumCode type exposes the following members.
Name | Description | |
---|---|---|
AnyFlagSet(TEnum) | Asserts that any bit from specified argument flag is set. | |
AnyFlagUnset(TEnum) | Asserts that any bit from specified argument flag is not set. | |
AnyStateFlagSet(TEnum)(TEnum, TEnum, String) | Asserts that any bit from specified state flag is set. | |
AnyStateFlagSet(TEnum)(TEnum, TEnum, String, Object[]) | Asserts that any bit from specified state flag is set. | |
AnyStateFlagUnset(TEnum)(TEnum, TEnum, String) | Asserts that any bit from specified state flag is not set. | |
AnyStateFlagUnset(TEnum)(TEnum, TEnum, String, Object[]) | Asserts that any bit from specified state flag is not set. | |
Defined(TEnum) | Asserts that specified argument enum value is defined. | |
FlagsDefined(TEnum) | Asserts that all bits of the flags combination are defined. | |
FlagSet(TEnum) | Asserts that the specified argument flag is set. | |
FlagUnset(TEnum) | Asserts that the specified argument flag is not set. | |
StateFlagSet(TEnum)(TEnum, TEnum, String) | Asserts that the specified state flag is set. | |
StateFlagSet(TEnum)(TEnum, TEnum, String, Object[]) | Asserts that the specified state flag is set. | |
StateFlagUnset(TEnum)(TEnum, TEnum, String) | Asserts that the specified state flag is not set. | |
StateFlagUnset(TEnum)(TEnum, TEnum, String, Object[]) | Asserts that the specified state flag is not set. |