38 lines
94 KiB
Markdown
38 lines
94 KiB
Markdown
---
|
|
title: "assertEqual"
|
|
excerpt: "Check that a numerical value equals another at runtime,"
|
|
layout: manual
|
|
---
|
|
|
|
Check that a numerical value equals another at runtime,
|
|
|
|
otherwise raise an error.
|
|
|
|
```js
|
|
assertEqual(left: number, right: number, epsilon: number, message: string) -> ()
|
|
```
|
|
|
|
### Examples
|
|
|
|
```js
|
|
let n = 1.0285
|
|
let m = 1.0286
|
|
assertEqual(n, m, 0.01, "n is within the given tolerance for m")
|
|
```
|
|
|
|

|
|
|
|
### Arguments
|
|
|
|
* `left`: `number` (REQUIRED)
|
|
* `right`: `number` (REQUIRED)
|
|
* `epsilon`: `number` (REQUIRED)
|
|
* `message`: `string` (REQUIRED)
|
|
|
|
### Returns
|
|
|
|
`()`
|
|
|
|
|
|
|