Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 2 | /* |
Junxiao Shi | b875293 | 2024-01-07 15:18:46 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, The University of Memphis, |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
| 6 | * |
| 7 | * This file is part of NLSR (Named-data Link State Routing). |
| 8 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 9 | * |
| 10 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 11 | * of the GNU General Public License as published by the Free Software Foundation, |
| 12 | * either version 3 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 15 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE. See the GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 20 | */ |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 21 | |
Junxiao Shi | aead588 | 2024-02-21 12:32:02 +0000 | [diff] [blame] | 22 | #include "route/routing-calculator.hpp" |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 23 | |
| 24 | #include "adjacency-list.hpp" |
Davide Pesavento | 8de8a8b | 2022-05-12 01:26:43 -0400 | [diff] [blame] | 25 | #include "adjacent.hpp" |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 26 | #include "lsdb.hpp" |
| 27 | #include "nlsr.hpp" |
Junxiao Shi | 4eb4eae | 2024-02-14 12:36:57 +0000 | [diff] [blame] | 28 | #include "route/name-map.hpp" |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 29 | #include "route/routing-table.hpp" |
| 30 | |
Davide Pesavento | 8de8a8b | 2022-05-12 01:26:43 -0400 | [diff] [blame] | 31 | #include "tests/io-key-chain-fixture.hpp" |
| 32 | #include "tests/test-common.hpp" |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 33 | |
Davide Pesavento | 288141a | 2024-02-13 17:30:35 -0500 | [diff] [blame] | 34 | namespace nlsr::tests { |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 35 | |
Davide Pesavento | 288141a | 2024-02-13 17:30:35 -0500 | [diff] [blame] | 36 | constexpr time::system_clock::time_point MAX_TIME = time::system_clock::time_point::max(); |
Junxiao Shi | 6593a43 | 2023-08-21 10:50:28 +0000 | [diff] [blame] | 37 | static const ndn::Name ROUTER_A_NAME = "/ndn/site/%C1.Router/this-router"; |
| 38 | static const ndn::Name ROUTER_B_NAME = "/ndn/site/%C1.Router/b"; |
| 39 | static const ndn::Name ROUTER_C_NAME = "/ndn/site/%C1.Router/c"; |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 40 | static const ndn::FaceUri ROUTER_A_FACE("udp4://10.0.0.1:6363"); |
| 41 | static const ndn::FaceUri ROUTER_B_FACE("udp4://10.0.0.2:6363"); |
| 42 | static const ndn::FaceUri ROUTER_C_FACE("udp4://10.0.0.3:6363"); |
| 43 | constexpr double LINK_AB_COST = 5.0; |
| 44 | constexpr double LINK_AC_COST = 10.0; |
| 45 | constexpr double LINK_BC_COST = 17.0; |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 46 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 47 | /** |
| 48 | * @brief Provide a topology for link-state routing calculator testing. |
| 49 | * |
| 50 | * The topology consists of three routers: A, B, C. |
| 51 | * After calling all three setupRouter functions, they will form a triangle topology: |
| 52 | * |
| 53 | * A-----B |
| 54 | * \ / |
| 55 | * \ / |
| 56 | * C |
| 57 | * |
| 58 | * The local router, as reported by `conf.getRouterPrefix()`, is router A. |
| 59 | */ |
Davide Pesavento | 8de8a8b | 2022-05-12 01:26:43 -0400 | [diff] [blame] | 60 | class LinkStateCalculatorFixture : public IoKeyChainFixture |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 61 | { |
| 62 | public: |
| 63 | LinkStateCalculatorFixture() |
Davide Pesavento | 8de8a8b | 2022-05-12 01:26:43 -0400 | [diff] [blame] | 64 | : face(m_io, m_keyChain) |
Saurab Dulal | 427e012 | 2019-11-28 11:58:02 -0600 | [diff] [blame] | 65 | , conf(face, m_keyChain) |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 66 | , confProcessor(conf) |
| 67 | , nlsr(face, m_keyChain, conf) |
| 68 | , routingTable(nlsr.m_routingTable) |
| 69 | , lsdb(nlsr.m_lsdb) |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 70 | { |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 71 | } |
| 72 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 73 | /** |
| 74 | * @brief Insert Adjacency LSA of router A into LSDB. |
| 75 | */ |
| 76 | void |
| 77 | setupRouterA(double costAB = LINK_AB_COST, double costAC = LINK_AC_COST) |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 78 | { |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 79 | AdjacencyList& adjList = conf.getAdjacencyList(); |
| 80 | if (!std::isnan(costAB)) { |
| 81 | adjList.insert(Adjacent(ROUTER_B_NAME, ROUTER_B_FACE, costAB, Adjacent::STATUS_ACTIVE, 0, 0)); |
| 82 | } |
| 83 | if (!std::isnan(costAC)) { |
| 84 | adjList.insert(Adjacent(ROUTER_C_NAME, ROUTER_C_FACE, costAC, Adjacent::STATUS_ACTIVE, 0, 0)); |
| 85 | } |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 86 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 87 | lsdb.installLsa(std::make_shared<AdjLsa>(ROUTER_A_NAME, 1, MAX_TIME, adjList)); |
| 88 | } |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 89 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 90 | /** |
| 91 | * @brief Insert Adjacency LSA of router B into LSDB. |
| 92 | */ |
| 93 | void |
| 94 | setupRouterB(double costBC = LINK_BC_COST, double costBA = LINK_AB_COST) |
| 95 | { |
| 96 | AdjacencyList adjList; |
| 97 | if (!std::isnan(costBC)) { |
| 98 | adjList.insert(Adjacent(ROUTER_C_NAME, ROUTER_C_FACE, costBC, Adjacent::STATUS_ACTIVE, 0, 0)); |
| 99 | } |
| 100 | if (!std::isnan(costBA)) { |
| 101 | adjList.insert(Adjacent(ROUTER_A_NAME, ROUTER_A_FACE, costBA, Adjacent::STATUS_ACTIVE, 0, 0)); |
| 102 | } |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 103 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 104 | lsdb.installLsa(std::make_shared<AdjLsa>(ROUTER_B_NAME, 1, MAX_TIME, adjList)); |
| 105 | } |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 106 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 107 | /** |
| 108 | * @brief Insert Adjacency LSA of router C into LSDB. |
| 109 | */ |
| 110 | void |
| 111 | setupRouterC(double costCA = LINK_AC_COST, double costCB = LINK_BC_COST) |
| 112 | { |
| 113 | AdjacencyList adjList; |
| 114 | if (!std::isnan(costCA)) { |
| 115 | adjList.insert(Adjacent(ROUTER_A_NAME, ROUTER_A_FACE, costCA, Adjacent::STATUS_ACTIVE, 0, 0)); |
| 116 | } |
| 117 | if (!std::isnan(costCB)) { |
| 118 | adjList.insert(Adjacent(ROUTER_B_NAME, ROUTER_B_FACE, costCB, Adjacent::STATUS_ACTIVE, 0, 0)); |
| 119 | } |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 120 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 121 | lsdb.installLsa(std::make_shared<AdjLsa>(ROUTER_C_NAME, 1, MAX_TIME, adjList)); |
| 122 | } |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 123 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 124 | /** |
| 125 | * @brief Run link-state routing calculator. |
| 126 | */ |
| 127 | void |
| 128 | calculatePath() |
| 129 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 130 | auto lsaRange = lsdb.getLsdbIterator<AdjLsa>(); |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 131 | NameMap map = NameMap::createFromAdjLsdb(lsaRange.first, lsaRange.second); |
| 132 | calculateLinkStateRoutingPath(map, routingTable, conf, lsdb); |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * @brief Verify that the routing table contains an entry with specific next hops. |
| 137 | * @param destination Destination router. |
| 138 | * @param expectedNextHops Expected next hops; order does not matter. |
| 139 | */ |
| 140 | void |
| 141 | checkRoutingTableEntry(const ndn::Name& destination, |
| 142 | std::initializer_list<NextHop> expectedNextHops) const |
| 143 | { |
| 144 | BOOST_TEST_CONTEXT("Checking routing table entry " << destination) |
| 145 | { |
| 146 | using NextHopSet = std::set<NextHop, NextHopUriSortedComparator>; |
| 147 | |
| 148 | NextHopSet expectedNextHopSet(expectedNextHops); |
| 149 | |
| 150 | const RoutingTableEntry* entry = routingTable.findRoutingTableEntry(destination); |
| 151 | BOOST_REQUIRE(entry != nullptr); |
| 152 | |
| 153 | const NexthopList& actualNextHopList = entry->getNexthopList(); |
| 154 | NextHopSet actualNextHopSet(actualNextHopList.begin(), actualNextHopList.end()); |
| 155 | |
| 156 | BOOST_TEST(expectedNextHopSet == actualNextHopSet, boost::test_tools::per_element()); |
| 157 | } |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | public: |
Junxiao Shi | 43f37a0 | 2023-08-09 00:09:00 +0000 | [diff] [blame] | 161 | ndn::DummyClientFace face; |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 162 | ConfParameter conf; |
| 163 | DummyConfFileProcessor confProcessor; |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 164 | Nlsr nlsr; |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 165 | |
| 166 | RoutingTable& routingTable; |
| 167 | Lsdb& lsdb; |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 168 | }; |
| 169 | |
Junxiao Shi | aead588 | 2024-02-21 12:32:02 +0000 | [diff] [blame] | 170 | BOOST_FIXTURE_TEST_SUITE(TestRoutingCalculatorLinkState, LinkStateCalculatorFixture) |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 171 | |
| 172 | BOOST_AUTO_TEST_CASE(Basic) |
| 173 | { |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 174 | setupRouterA(); |
| 175 | setupRouterB(); |
| 176 | setupRouterC(); |
| 177 | calculatePath(); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 178 | |
| 179 | // Router A should be able to get to B through B and to B through C |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 180 | checkRoutingTableEntry(ROUTER_B_NAME, { |
| 181 | {ROUTER_B_FACE, LINK_AB_COST}, |
| 182 | {ROUTER_C_FACE, LINK_AC_COST + LINK_BC_COST}, |
| 183 | }); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 184 | |
| 185 | // Router A should be able to get to C through C and to C through B |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 186 | checkRoutingTableEntry(ROUTER_C_NAME, { |
| 187 | {ROUTER_C_FACE, LINK_AC_COST}, |
| 188 | {ROUTER_B_FACE, LINK_AB_COST + LINK_BC_COST}, |
| 189 | }); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | BOOST_AUTO_TEST_CASE(Asymmetric) |
| 193 | { |
| 194 | // Asymmetric link cost between B and C |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 195 | double higherCostBC = LINK_BC_COST + 1; |
| 196 | setupRouterA(); |
| 197 | setupRouterB(higherCostBC); |
| 198 | setupRouterC(); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 199 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 200 | // Calculation should consider the link between B and C as having cost = higherCostBC |
| 201 | calculatePath(); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 202 | |
| 203 | // Router A should be able to get to B through B and to B through C |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 204 | checkRoutingTableEntry(ROUTER_B_NAME, { |
| 205 | {ROUTER_B_FACE, LINK_AB_COST}, |
| 206 | {ROUTER_C_FACE, LINK_AC_COST + higherCostBC}, |
| 207 | }); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 208 | |
| 209 | // Router A should be able to get to C through C and to C through B |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 210 | checkRoutingTableEntry(ROUTER_C_NAME, { |
| 211 | {ROUTER_C_FACE, LINK_AC_COST}, |
| 212 | {ROUTER_B_FACE, LINK_AB_COST + higherCostBC}, |
| 213 | }); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 214 | } |
| 215 | |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 216 | BOOST_AUTO_TEST_CASE(NonAdjacentCost) |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 217 | { |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 218 | // Break the link between B - C by setting it to NON_ADJACENT_COST. |
| 219 | setupRouterA(); |
| 220 | setupRouterB( |
| 221 | Adjacent::NON_ADJACENT_COST // B to C |
| 222 | ); |
| 223 | setupRouterC(); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 224 | |
| 225 | // Calculation should consider the link between B and C as down |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 226 | calculatePath(); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 227 | |
| 228 | // Router A should be able to get to B through B but not through C |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 229 | checkRoutingTableEntry(ROUTER_B_NAME, { |
| 230 | {ROUTER_B_FACE, LINK_AB_COST}, |
| 231 | }); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 232 | |
| 233 | // Router A should be able to get to C through C but not through B |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 234 | checkRoutingTableEntry(ROUTER_C_NAME, { |
| 235 | {ROUTER_C_FACE, LINK_AC_COST}, |
| 236 | }); |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | BOOST_AUTO_TEST_CASE(AsymmetricZeroCostLink) |
| 240 | { |
| 241 | // Asymmetric and zero link cost between B - C, and B - A. |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 242 | setupRouterA( |
| 243 | 0 // A to B |
| 244 | ); |
| 245 | setupRouterB( |
| 246 | 0, // B to C: effective cost is still LINK_BC_COST, as specified on C-B link |
| 247 | 0 // B to A |
| 248 | ); |
| 249 | setupRouterC(); |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 250 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 251 | // Calculation should consider 0 link-cost between A and B |
| 252 | calculatePath(); |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 253 | |
| 254 | // Router A should be able to get to B through B and C |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 255 | checkRoutingTableEntry(ROUTER_B_NAME, { |
| 256 | {ROUTER_B_FACE, 0}, |
| 257 | {ROUTER_C_FACE, LINK_AC_COST + LINK_BC_COST}, |
| 258 | }); |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 259 | |
| 260 | // Router A should be able to get to C through C and B |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 261 | checkRoutingTableEntry(ROUTER_C_NAME, { |
| 262 | {ROUTER_C_FACE, LINK_AC_COST}, |
| 263 | {ROUTER_B_FACE, 0 + LINK_BC_COST}, |
| 264 | }); |
| 265 | } |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 266 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 267 | BOOST_AUTO_TEST_CASE(OnePath) |
| 268 | { |
| 269 | double costBC = 2.0; |
| 270 | setupRouterA(); |
| 271 | setupRouterB( |
| 272 | costBC // B to C |
| 273 | ); |
| 274 | setupRouterC( |
| 275 | LINK_AC_COST, // C to A |
| 276 | costBC // C to B |
| 277 | ); |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 278 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 279 | // Calculate only one path per destination router. |
| 280 | conf.setMaxFacesPerPrefix(1); |
| 281 | // This triggers a different code path. |
| 282 | calculatePath(); |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 283 | |
Junxiao Shi | 0fef057 | 2024-02-22 04:15:49 +0000 | [diff] [blame] | 284 | // Shortest path to router B is via router B. |
| 285 | checkRoutingTableEntry(ROUTER_B_NAME, { |
| 286 | {ROUTER_B_FACE, LINK_AB_COST}, |
| 287 | }); |
| 288 | |
| 289 | // Shortest path to router C is via router B. |
| 290 | checkRoutingTableEntry(ROUTER_C_NAME, { |
| 291 | {ROUTER_B_FACE, LINK_AB_COST + costBC}, |
| 292 | }); |
| 293 | } |
| 294 | |
| 295 | BOOST_AUTO_TEST_CASE(SourceRouterAbsent) |
| 296 | { |
| 297 | // RouterA does not exist in the LSDB. |
| 298 | // setupRouterA is not invoked. |
| 299 | setupRouterB( |
| 300 | LINK_BC_COST, // B to C |
| 301 | NAN // B to A: skipped |
| 302 | ); |
| 303 | setupRouterC( |
| 304 | NAN // C to A: skipped |
| 305 | ); |
| 306 | |
| 307 | // Calculation should do nothing and not cause errors. |
| 308 | calculatePath(); |
| 309 | |
| 310 | // There should be no routes. |
| 311 | BOOST_CHECK(routingTable.m_rTable.empty()); |
Vince Lehman | 41b173e | 2015-05-07 14:13:26 -0500 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | BOOST_AUTO_TEST_SUITE_END() |
| 315 | |
Davide Pesavento | 288141a | 2024-02-13 17:30:35 -0500 | [diff] [blame] | 316 | } // namespace nlsr::tests |