1/*
2 * Copyright (c) 2016 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.internal.matchers.text;
6
7/**
8 * Contains text that has already been formatted
9 * and hence it does not need any formatting (like quotes around string, etc.)
10 */
11class FormattedText {
12
13    private final String text;
14
15    public FormattedText(String text) {
16        this.text = text;
17    }
18
19    public String getText() {
20        return text;
21    }
22}
23