Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Merge requests
!325
Add to/fromAron() for one-sided optional and test utilities for C++/Python conversion
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add to/fromAron() for one-sided optional and test utilities for C++/Python conversion
feature/aron-python-conv
into
master
Overview
1
Commits
6
Pipelines
0
Changes
4
Merged
Rainer Kartmann
requested to merge
feature/aron-python-conv
into
master
2 years ago
Overview
1
Commits
6
Pipelines
0
Changes
4
Expand
ARON conversions (C++): Add overloads for one-sided optional
Add test utilities for testing C++ to Python conversion of ARON classes
Related to:
python3-armarx!33 (merged)
https://git.h2t.iar.kit.edu/sw/armarx/speechx/-/merge_requests/17
Edited
2 years ago
by
Rainer Kartmann
0
0
Merge request reports
Viewing commit
928ebf2f
Prev
Next
Show latest version
4 files
+
171
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
928ebf2f
Add helper class for C++ test side
· 928ebf2f
Rainer Kartmann
authored
2 years ago
source/RobotAPI/libraries/aron/test/AronConversionTester.cpp
0 → 100644
+
38
−
0
Options
/**
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package RobotAPI::ArmarXObjects::aron_cpp_to_python_conv_test
* @author Rainer Kartmann ( rainer dot kartmann at kit dot edu )
* @date 2023
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#include
"AronConversionTester.h"
#include
<ArmarXCore/core/exceptions/local/ExpressionException.h>
namespace
armarx
::
aron
::
test
{
AronConversionTester
::
AronConversionTester
(
dti
::
AronConversionTestInterfacePrx
python
)
:
interface
(
python
)
{
ARMARX_CHECK
(
python
);
}
}
// namespace armarx::aron::test
Loading