13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
import { expect } from "chai";
|
|
|
|
import { DPT237 } from "../src/DPT237"
|
|
import { BufferLengthError } from "../src/errors/BufferLengthError";
|
|
import { InvalidValueError } from "../src/errors/InvalidValueError";
|
|
|
|
import { compareBuffers } from "./util"
|
|
|
|
describe("Test DPT237", (): void => {
|
|
|
|
let dpt = new DPT237();
|
|
|
|
}); |