deno.land / std@0.177.1 / io / read_long_test.ts

read_long_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";import { readLong } from "./read_long.ts";import { BufReader } from "./buf_reader.ts";import { BinaryReader } from "./_test_common.ts";
Deno.test("testReadLong", async function () { const r = new BinaryReader( new Uint8Array([0x00, 0x00, 0x00, 0x78, 0x12, 0x34, 0x56, 0x78]), ); const long = await readLong(new BufReader(r)); assertEquals(long, 0x7812345678);});
Deno.test("testReadLong2", async function () { const r = new BinaryReader( new Uint8Array([0, 0, 0, 0, 0x12, 0x34, 0x56, 0x78]), ); const long = await readLong(new BufReader(r)); assertEquals(long, 0x12345678);});
std

Version Info

Tagged at
11 months ago