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