Skip to content

T_CodeJam_DebugCode

Andrew Koryavchenko edited this page Jun 17, 2018 · 11 revisions

DebugCode Class

Debug-time assertions class. Common constants

Assertions class.

Inheritance Hierarchy

System.Object
  CodeJam.DebugCode
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0

Syntax

C#

public static class DebugCode

VB

Public NotInheritable Class DebugCode

F#

[<AbstractClassAttribute>]
[<SealedAttribute>]
type DebugCode =  class end

The DebugCode type exposes the following members.

Methods

 

Name Description
Public methodStatic member AssertArgument(Boolean, String, String) Assertion for the argument value
Public methodStatic member AssertArgument(Boolean, String, String, Object[]) Assertion for the argument value
Public methodStatic member AssertState(Boolean, String) State assertion
Public methodStatic member AssertState(Boolean, String, Object[]) State assertion
Public methodStatic member BugIf(Boolean, String) Asserts if the given condition is satisfied.
Public methodStatic member BugIf(Boolean, String, Object[]) Asserts if the given condition is satisfied.
Public methodStatic member InRange(Double, String, Double, Double) Assertion for the argument in range
Public methodStatic member InRange(Int32, String, Int32, Int32) Assertion for the argument in range
Public methodStatic member InRange(T)(T, String, T, T) Assertion for the argument in range
Public methodStatic member ItemNotNull(T) Ensures that all items in arg != null
Public methodStatic member NotNull(T)(Nullable(T), String) Ensures that arg != null
Public methodStatic member NotNull(T)(T, String) Ensures that arg != null
Public methodStatic member NotNullAndItemNotNull(T) Ensures that arg and its all items != null
Public methodStatic member NotNullNorEmpty Ensures that arg is not null nor empty
Public methodStatic member NotNullNorWhiteSpace Ensures that arg is not null nor white space
Public methodStatic member ValidCount(Int32, String) Asserts if the passed value is not a valid count.
Public methodStatic member ValidCount(Int32, String, Int32) Asserts if the passed value is not a valid count.
Public methodStatic member ValidIndex(Int32, String) Assertion for index in range
Public methodStatic member ValidIndex(Int32, String, Int32) Assertion for index in range
Public methodStatic member ValidIndexAndCount Assertion for startIndex-count pair
Public methodStatic member ValidIndexPair Assertion for from-to index pair
  Back to Top

Fields

 

Name Description
Public fieldStatic member DebugCondition Conditional symbol for debug builds.
  Back to Top

See Also

Reference

CodeJam Namespace

Clone this wiki locally