/** * Copyright (C) 2010-2017 Gordon Fraser, Andrea Arcuri and EvoSuite * contributors * * This file is part of EvoSuite. * * EvoSuite is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation, either version 3.0 of the License, or * (at your option) any later version. * * EvoSuite is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with EvoSuite. If not, see <http://www.gnu.org/licenses/>. */ package org.evosuite.coverage.io; /** * @author Jose Miguel Rojas */ public class IOCoverageConstants { public static final String CHAR_ALPHA = "AlphabeticChar"; public static final String CHAR_DIGIT = "Digit"; public static final String CHAR_OTHER = "OtherChar"; public static final String BOOL_TRUE = "True"; public static final String BOOL_FALSE = "False"; public static final String NUM_POSITIVE = "Positive"; public static final String NUM_ZERO = "Zero"; public static final String NUM_NEGATIVE = "Negative"; public static final String REF_NULL = "Null"; public static final String REF_NONNULL = "NonNull"; public static final String ARRAY_EMPTY = "EmptyArray"; public static final String ARRAY_NONEMPTY = "NonEmptyArray"; public static final String STRING_EMPTY = "EmptyString"; public static final String STRING_NONEMPTY = "NonEmptyString"; public static final String LIST_EMPTY = "EmptyList"; public static final String LIST_NONEMPTY = "NonEmptyList"; public static final String SET_EMPTY = "EmptySet"; public static final String SET_NONEMPTY = "NonEmptySet"; public static final String MAP_EMPTY = "EmptyMap"; public static final String MAP_NONEMPTY = "NonEmptyMap"; }