is it possible to ask Maple to verify ode solution obtained from book, which is given in parametric form to check if it is correct?
I know odetest supports both explicit and implicit solutions. But parametric solution is neither of these.
The solution in parametric form makes it look simple to look at and understand, but at same time, not practical in terms of obtaining an explicit solution to verify it and to use it.
The book "handbook of exact solution for ordinary differential equations" by Polyanin and Zaitsev have many such solutions.
Here is one such example of many

I can not just give odetest the y(x) solution above, because the right side depends on tau, which is parameter. If I try to solve for tau in terms of x from the first equation it will become so complicated and odetest hangs. So a whole new different approach is needed as brute force method is not practical in most cases.
Download how_to_verify_parametric_solution_to_ode.mw
Some more examples from the book where solutions are given only in parametrric form


update
inspired by solution below by @acer, I found if I just use Solve on the x equation, in order to find t as function of x, and use that in the y equation, it will automatically return solution using RootOf.
Hence no need to explicitly evaluate the integral or explicity set up the RootOf manually.
Now odetest work.
Download how_to_verify_parametric_solution_to_ode_V2.mw