UNPKG

alsatian-fluent-assertions

Version:

Fluent assertions extension to Alsatian xUnit framework.

13 lines 373 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class RootNode { constructor(name, details) { this.name = name; this.details = details; } get fullname() { return this.details ? this.name + `[${this.details}]` : this.name; } } exports.RootNode = RootNode; //# sourceMappingURL=root-node.js.map