describe("isColorStringHexRGBA", (): void => {
        test("should return false when invoked with a HexRGB color", (): void => {
            expect(isColorStringHexRGBA("#000000")).to.equal(false);
            expect(isColorStringHexRGBA("#000")).to.equal(false);
        });