dptlib/tests/DPT021.test.ts
2022-03-11 12:09:49 +01:00

13 lines
317 B
TypeScript

import { expect } from "chai";
import { DPT21 } from "../src/DPT21"
import { BufferLengthError } from "../src/errors/BufferLengthError";
import { InvalidValueError } from "../src/errors/InvalidValueError";
import { compareBuffers } from "./util"
describe("Test DPT021", (): void => {
let dpt = new DPT21();
});