| 584 | |
| 585 | template< class... Context > |
| 586 | static |
| 587 | void testPath( Context const& ... ctx ) |
| 588 | { |
| 589 | ignore_unused( ctx... ); |
| 590 | #ifndef BOOST_NO_CXX17_HDR_FILESYSTEM |
| 591 | std::vector<std::filesystem::path> paths{ |
| 592 | "from/here", "to/there", "", "c:/" , "..", "../"}; |
| 593 | value jv = value_from( paths, ctx... ); |
| 594 | BOOST_TEST( |
| 595 | jv == (value{"from/here", "to/there", "", "c:/" , "..", "../"}) ); |
| 596 | #endif // BOOST_NO_CXX17_HDR_FILESYSTEM |
| 597 | } |
| 598 | |
| 599 | void |
| 600 | testContext() |
nothing calls this directly
no test coverage detected