GCC Code Coverage Report
Directory: cvmfs/ Exec Total Coverage
File: cvmfs/repository_tag.cc Lines: 2 2 100.0 %
Date: 2019-02-03 02:48:13 Branches: 0 0 - %

Line Branch Exec Source
1
/**
2
 * This file is part of the CernVM File System.
3
 */
4
5
#include "repository_tag.h"
6
7
11
RepositoryTag::RepositoryTag(const std::string& name,
8
                             const std::string& channel,
9
                             const std::string& description)
10
    : name_(name),
11
      channel_(channel),
12
11
      description_(description) {
13
}