dptlib/tests/DPT018.test.ts

13 lines
317 B
TypeScript
Raw Normal View History

2022-03-09 22:38:02 +01:00
import { expect } from "chai";
import { DPT18 } from "../src/DPT18"
import { BufferLengthError } from "../src/errors/BufferLengthError";
import { InvalidValueError } from "../src/errors/InvalidValueError";
import { compareBuffers } from "./util"
describe("Test DPT018", (): void => {
2022-03-09 22:38:02 +01:00
let dpt = new DPT18();
});