EMMA Coverage Report (generated Sun Mar 01 22:06:14 CET 2015)
[all classes][org.h2.engine]

COVERAGE SUMMARY FOR SOURCE FILE [Procedure.java]

nameclass, %method, %block, %line, %
Procedure.java100% (1/1)100% (3/3)100% (15/15)100% (6/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class Procedure100% (1/1)100% (3/3)100% (15/15)100% (6/6)
Procedure (String, Prepared): void 100% (1/1)100% (9/9)100% (4/4)
getName (): String 100% (1/1)100% (3/3)100% (1/1)
getPrepared (): Prepared 100% (1/1)100% (3/3)100% (1/1)

1/*
2 * Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0,
3 * and the EPL 1.0 (http://h2database.com/html/license.html).
4 * Initial Developer: H2 Group
5 */
6package org.h2.engine;
7 
8import org.h2.command.Prepared;
9 
10/**
11 * Represents a procedure. Procedures are implemented for PostgreSQL
12 * compatibility.
13 */
14public class Procedure {
15 
16    private final String name;
17    private final Prepared prepared;
18 
19    public Procedure(String name, Prepared prepared) {
20        this.name = name;
21        this.prepared = prepared;
22    }
23 
24    public String getName() {
25        return name;
26    }
27 
28    public Prepared getPrepared() {
29        return prepared;
30    }
31 
32}

[all classes][org.h2.engine]
EMMA 2.0.5312 (C) Vladimir Roubtsov