public toContain(expectedContent: string) {
        this.registerMatcher(
            this.actualValue.indexOf(expectedContent) > -1 === this.shouldMatch,
            `Expected ${stringify(this.actualValue)} ${
                !this.shouldMatch ? "not " : ""