22 lines
438 B
C#
22 lines
438 B
C#
using System;
|
|||
|
|
|
||
|
|
namespace TrajectoryPlanningVisualizationVerificationHost;
|
||
|
|
|
||
|
|
internal static class Program
|
||
|
|
{
|
||
|
|
private static int Main()
|
||
|
|
{
|
||
|
|
try
|
||
|
|
{
|
||
|
|
ContractChecks.Run();
|
||
|
|
Console.WriteLine("PASS trajectory-planning-visualization");
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
catch (Exception exception)
|
||
|
|
{
|
||
|
|
Console.Error.WriteLine(exception);
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|