Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic-graph
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilhem Saurel
dynamic-graph
Commits
2892dc41
Commit
2892dc41
authored
14 years ago
by
Francois Bleibel
Browse files
Options
Downloads
Patches
Plain Diff
Added a new test (test_pool).
parent
6d0b4a00
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
unitTesting/CMakeLists.txt
+27
-33
27 additions, 33 deletions
unitTesting/CMakeLists.txt
unitTesting/test_pool.cpp
+75
-0
75 additions, 0 deletions
unitTesting/test_pool.cpp
with
102 additions
and
33 deletions
unitTesting/CMakeLists.txt
+
27
−
33
View file @
2892dc41
...
@@ -2,36 +2,30 @@
...
@@ -2,36 +2,30 @@
# Copyright
# Copyright
#
#
### test_shell
### tests
SET
(
EXECUTABLE_NAME test_shell
)
SET
(
tests
test_shell
ADD_DEFINITIONS
(
-DDEBUG=2
)
test_pool
test_depend
)
ADD_EXECUTABLE
(
${
EXECUTABLE_NAME
}
test_shell.cpp
)
FOREACH
(
test_name
${
tests
}
)
SET
(
EXECUTABLE_NAME
${
test_name
}
)
INCLUDE_DIRECTORIES
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../include
ADD_DEFINITIONS
(
-DDEBUG=2
)
)
ADD_EXECUTABLE
(
${
EXECUTABLE_NAME
}
LINK_DIRECTORIES
(
${${
PROJECT_NAME
}
_BINARY_DIR
}
/lib
)
${
test_name
}
.cpp
)
TARGET_LINK_LIBRARIES
(
${
EXECUTABLE_NAME
}
INCLUDE_DIRECTORIES
(
${
PROJECT_NAME
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/../include
dl
)
)
LINK_DIRECTORIES
(
${${
PROJECT_NAME
}
_BINARY_DIR
}
/lib
)
### test_factory
# test currently disabled
TARGET_LINK_LIBRARIES
(
${
EXECUTABLE_NAME
}
#SET(EXECUTABLE_NAME test_factory)
${
PROJECT_NAME
}
dl
)
#ADD_DEFINITIONS(-DDEBUG=2)
INSTALL
(
TARGETS
${
test_name
}
#ADD_EXECUTABLE(${EXECUTABLE_NAME}
DESTINATION
${
CMAKE_INSTALL_PREFIX
}
/bin/
${
PROJECT_NAME
}
)
# test_factory.cpp)
ENDFOREACH
(
test_name
)
\ No newline at end of file
#INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)
#link_directories(${LIBRARY_OUTPUT_PATH})
#TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME}
# ${PROJECT_NAME}
# dl)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
unitTesting/test_pool.cpp
0 → 100644
+
75
−
0
View file @
2892dc41
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
* Copyright Projet JRL-JAPAN, Tsukuba, 2007
*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
* File: test_entity.cc
* Project: dynamicGraph
* Author: François Bleibel
*
* Version control
* ===============
*
* $Id$
*
* Description
* ============
*
*
* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* -------------------------------------------------------------------------- */
/* --- INCLUDES ------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
#include
<string>
#include
<iostream>
#include
<cstdlib>
#include
<dynamic-graph/factory.h>
#include
<dynamic-graph/entity.h>
#include
<dynamic-graph/debug.h>
#include
<dynamic-graph/pool.h>
#include
<memory>
using
namespace
std
;
using
namespace
dynamicgraph
;
class
MyEntity
:
public
Entity
{
public:
MyEntity
(
const
std
::
string
&
name
);
public:
/* --- ENTITY INHERITANCE --- */
static
const
std
::
string
CLASS_NAME
;
virtual
void
display
(
std
::
ostream
&
os
)
const
;
virtual
const
std
::
string
&
getClassName
(
void
)
const
{
return
CLASS_NAME
;
}
protected
:
};
DYNAMICGRAPH_FACTORY_ENTITY_PLUGIN
(
MyEntity
,
"MyEntity"
);
MyEntity
::
MyEntity
(
const
std
::
string
&
name
)
:
Entity
(
name
){
}
void
MyEntity
::
display
(
std
::
ostream
&
os
)
const
{
os
<<
"Hello! My name is "
<<
getName
()
<<
" !"
<<
endl
;
}
main
()
{
MyEntity
myEntity
(
"MyEntity"
);
cout
<<
"-- Pool.list"
<<
endl
;
pool
.
commandLine
(
"pool"
,
"list"
,
*
auto_ptr
<
istringstream
>
(
new
istringstream
(
""
)),
cout
);
Entity
&
e
=
pool
.
getEntity
(
"MyEntity"
);
cout
<<
"-- Display"
<<
endl
;
e
.
display
(
cout
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment