dptlib/tests/DPT20.test.ts
2022-03-09 22:38:02 +01:00

13 lines
316 B
TypeScript

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