File: gtest_bundle_single_group.cpp

package info (click to toggle)
manif 0.0.5-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,576 kB
  • sloc: cpp: 11,789; ansic: 8,774; python: 2,158; sh: 24; makefile: 23; xml: 21
file content (33 lines) | stat: -rw-r--r-- 700 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <gtest/gtest.h>

#include "manif/manif.h"

#include "../common_tester.h"

using namespace manif;

using GroupB1 = Bundle<double, R3>;
using GroupB2 = Bundle<double, SO2>;
using GroupB3 = Bundle<double, SE2>;
using GroupB4 = Bundle<double, SO3>;
using GroupB5 = Bundle<double, SE3>;

MANIF_TEST(GroupB1);
MANIF_TEST(GroupB2);
MANIF_TEST(GroupB3);
MANIF_TEST(GroupB4);
MANIF_TEST(GroupB5);

MANIF_TEST_MAP(GroupB1);
MANIF_TEST_MAP(GroupB2);
MANIF_TEST_MAP(GroupB3);
MANIF_TEST_MAP(GroupB4);
MANIF_TEST_MAP(GroupB5);

MANIF_TEST_JACOBIANS(GroupB1);
MANIF_TEST_JACOBIANS(GroupB2);
MANIF_TEST_JACOBIANS(GroupB3);
MANIF_TEST_JACOBIANS(GroupB4);
MANIF_TEST_JACOBIANS(GroupB5);

MANIF_RUN_ALL_TEST;