Tests equality and relational criteria for gates.

This commit is contained in:
Vladimir Byko-Ianko 2017-11-02 16:38:21 +03:00 committed by Ilya Zverev
parent d527b9746a
commit 2bcdd30072

View file

@ -180,6 +180,32 @@ UNIT_TEST(Transit_GateSerialization)
TEST(gate.IsValid(), (gate));
}
UNIT_TEST(Transit_GatesRelational)
{
vector<Gate> const gates = {{1234567 /* osm id */,
123 /* feature id */,
true /* entrance */,
false /* exit */,
1.0 /* weight */,
{1, 2, 3} /* stops ids */,
m2::PointD(0.0, 0.0)},
{1234567 /* osm id */,
1234 /* feature id */,
true /* entrance */,
false /* exit */,
1.0 /* weight */,
{1, 2, 3} /* stops ids */,
m2::PointD(0.0, 0.0)},
{1234567 /* osm id */,
1234 /* feature id */,
true /* entrance */,
false /* exit */,
1.0 /* weight */,
{1, 2, 3, 4} /* stops ids */,
m2::PointD(0.0, 0.0)}};
TEST(is_sorted(gates.cbegin(), gates.cend()), ());
}
UNIT_TEST(Transit_EdgeSerialization)
{
Edge edge(1 /* start stop id */, 2 /* finish stop id */, 123.4 /* weight */, 11 /* line id */,