All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.debugging.Location Maven / Gradle / Ivy

There is a newer version: 2.0.2-beta
Show newest version
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.debugging;

import java.io.Serializable;

import org.mockito.internal.exceptions.base.StackTraceFilter;

public class Location implements Serializable {

    private static final long serialVersionUID = -9054861157390980624L;
    private final String where;

    public Location() {
        this(new StackTraceFilter());
    }

    public Location(StackTraceFilter filter) {
        StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();
        StackTraceElement[] filtered = filter.filter(stackTrace, false);
        if (filtered.length == 0) {
            where = "-> at <>";
        } else {
            where = "-> at " + filtered[0].toString();
        }
    }

    @Override
    public String toString() {
        return where;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy