22
33#include " input.hpp"
44
5- TEST_CASE (" it's good if input data is ordered" )
5+ TEST_CASE (" it's good if input data is ordered" , " [NoDB] " )
66{
77 type_id_version const tiv1{osmium::item_type::node, 1 , 1 };
88 type_id_version const tiv2{osmium::item_type::node, 1 , 2 };
@@ -20,7 +20,7 @@ TEST_CASE("it's good if input data is ordered")
2020 REQUIRE_NOTHROW (check_input (tiv6, tiv7));
2121}
2222
23- TEST_CASE (" negative OSM object ids are not allowed" )
23+ TEST_CASE (" negative OSM object ids are not allowed" , " [NoDB] " )
2424{
2525 type_id_version const tivn{osmium::item_type::node, -17 , 1 };
2626 type_id_version const tivw{osmium::item_type::way, -1 , 1 };
@@ -36,7 +36,7 @@ TEST_CASE("negative OSM object ids are not allowed")
3636 " Negative OSM object ids are not allowed: relation id -999." );
3737}
3838
39- TEST_CASE (" objects of the same type must be ordered" )
39+ TEST_CASE (" objects of the same type must be ordered" , " [NoDB] " )
4040{
4141 type_id_version const tiv1{osmium::item_type::node, 42 , 1 };
4242 type_id_version const tiv2{osmium::item_type::node, 3 , 1 };
@@ -45,7 +45,7 @@ TEST_CASE("objects of the same type must be ordered")
4545 " Input data is not ordered: node id 3 after 42." );
4646}
4747
48- TEST_CASE (" a node after a way or relation is not allowed" )
48+ TEST_CASE (" a node after a way or relation is not allowed" , " [NoDB] " )
4949{
5050 type_id_version const tiv1w{osmium::item_type::way, 42 , 1 };
5151 type_id_version const tiv1r{osmium::item_type::relation, 42 , 1 };
@@ -57,7 +57,7 @@ TEST_CASE("a node after a way or relation is not allowed")
5757 " Input data is not ordered: node after relation." );
5858}
5959
60- TEST_CASE (" a way after a relation is not allowed" )
60+ TEST_CASE (" a way after a relation is not allowed" , " [NoDB] " )
6161{
6262 type_id_version const tiv1{osmium::item_type::relation, 42 , 1 };
6363 type_id_version const tiv2{osmium::item_type::way, 100 , 1 };
@@ -66,7 +66,7 @@ TEST_CASE("a way after a relation is not allowed")
6666 " Input data is not ordered: way after relation." );
6767}
6868
69- TEST_CASE (" versions must be ordered" )
69+ TEST_CASE (" versions must be ordered" , " [NoDB] " )
7070{
7171 type_id_version const tiv1{osmium::item_type::way, 42 , 2 };
7272 type_id_version const tiv2{osmium::item_type::way, 42 , 1 };
0 commit comments