C# 클래스 System.Tests.MathFTests

파일 보기 프로젝트 열기: dotnet/corefx

Private Properties

프로퍼티 타입 설명
Abs void
Acos void
Asin void
Atan void
Atan2 void
Ceiling void
Cos void
Cosh void
Exp void
Floor void
IEEERemainder void
Log void
Log10 void
LogWithBase void
Max void
Min void
Pow void
Round void
Round_Digits void
Sign void
Sin void
Sinh void
Sqrt void
Tan void
Tanh void
Truncate void

공개 메소드들

메소드 설명
AssertEqual ( float expected, float actual, float allowedVariance ) : void

Verifies that two float values are equal, within the allowedVariance.

비공개 메소드들

메소드 설명
Abs ( ) : void
Acos ( ) : void
Asin ( ) : void
Atan ( ) : void
Atan2 ( ) : void
Ceiling ( ) : void
Cos ( ) : void
Cosh ( ) : void
Exp ( ) : void
Floor ( ) : void
IEEERemainder ( ) : void
Log ( ) : void
Log10 ( ) : void
LogWithBase ( ) : void
Max ( ) : void
Min ( ) : void
Pow ( ) : void
Round ( ) : void
Round_Digits ( ) : void
Sign ( ) : void
Sin ( ) : void
Sinh ( ) : void
Sqrt ( ) : void
Tan ( ) : void
Tanh ( ) : void
Truncate ( ) : void

메소드 상세

AssertEqual() 공개 정적인 메소드

Verifies that two float values are equal, within the allowedVariance.
Thrown when the values are not equal
public static AssertEqual ( float expected, float actual, float allowedVariance ) : void
expected float The expected value
actual float The value to be compared against
allowedVariance float The total variance allowed between the expected and actual results.
리턴 void