summaryrefslogtreecommitdiffstats
path: root/test/libapt/priority_test.cc
blob: af7932ae84ce12da8718c5be873470a49b758705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <config.h>
#include <apt-pkg/pkgcache.h>
#include <gtest/gtest.h>
#include <string>

using std::string;

// Tests for Bug#807523
TEST(PriorityTest, PriorityPrinting)
{
   EXPECT_EQ("required", string(pkgCache::Priority(pkgCache::State::Required)));
   EXPECT_EQ("important", string(pkgCache::Priority(pkgCache::State::Important)));
   EXPECT_EQ("standard", string(pkgCache::Priority(pkgCache::State::Standard)));
   EXPECT_EQ("optional", string(pkgCache::Priority(pkgCache::State::Optional)));
   EXPECT_EQ("extra", string(pkgCache::Priority(pkgCache::State::Extra)));
}