Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
keyboard
LatinIME
Commits
40b6d6cb
Commit
40b6d6cb
authored
10 years ago
by
Keisuke Kuroyanagi
Browse files
Options
Downloads
Patches
Plain Diff
Add DicNodePoolTest.
Change-Id: I9bec708def3af6bea1c82b9576b80ce1b7901ddc
parent
f9577035
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
native/jni/NativeFileList.mk
+2
-1
2 additions, 1 deletion
native/jni/NativeFileList.mk
native/jni/tests/suggest/core/dicnode/dic_node_pool_test.cpp
+69
-0
69 additions, 0 deletions
native/jni/tests/suggest/core/dicnode/dic_node_pool_test.cpp
with
71 additions
and
1 deletion
native/jni/NativeFileList.mk
+
2
−
1
View file @
40b6d6cb
...
...
@@ -121,8 +121,9 @@ LATIN_IME_CORE_SRC_FILES += $(LATIN_IME_CORE_SRC_FILES_BACKWARD_V402)
LATIN_IME_CORE_TEST_FILES
:=
\
defines_test.cpp
\
suggest/core/
layout/normal_distribution_2d
_test.cpp
\
suggest/core/
dicnode/dic_node_pool
_test.cpp
\
suggest/core/dictionary/bloom_filter_test.cpp
\
suggest/core/layout/normal_distribution_2d_test.cpp
\
suggest/policyimpl/dictionary/structure/v4/content/language_model_dict_content_test.cpp
\
suggest/policyimpl/dictionary/structure/v4/content/probability_entry_test.cpp
\
suggest/policyimpl/dictionary/utils/buffer_with_extendable_buffer_test.cpp
\
...
...
This diff is collapsed.
Click to expand it.
native/jni/tests/suggest/core/dicnode/dic_node_pool_test.cpp
0 → 100644
+
69
−
0
View file @
40b6d6cb
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include
"suggest/core/dicnode/dic_node_pool.h"
#include
<gtest/gtest.h>
namespace
latinime
{
namespace
{
TEST
(
DicNodePoolTest
,
TestGet
)
{
static
const
int
CAPACITY
=
10
;
DicNodePool
dicNodePool
(
CAPACITY
);
for
(
int
i
=
0
;
i
<
CAPACITY
;
++
i
)
{
EXPECT_NE
(
nullptr
,
dicNodePool
.
getInstance
());
}
EXPECT_EQ
(
nullptr
,
dicNodePool
.
getInstance
());
}
TEST
(
DicNodePoolTest
,
TestPlaceBack
)
{
static
const
int
CAPACITY
=
1
;
DicNodePool
dicNodePool
(
CAPACITY
);
DicNode
*
const
dicNode
=
dicNodePool
.
getInstance
();
EXPECT_NE
(
nullptr
,
dicNode
);
EXPECT_EQ
(
nullptr
,
dicNodePool
.
getInstance
());
dicNodePool
.
placeBackInstance
(
dicNode
);
EXPECT_EQ
(
dicNode
,
dicNodePool
.
getInstance
());
}
TEST
(
DicNodePoolTest
,
TestReset
)
{
static
const
int
CAPACITY_SMALL
=
2
;
static
const
int
CAPACITY_LARGE
=
10
;
DicNodePool
dicNodePool
(
CAPACITY_SMALL
);
for
(
int
i
=
0
;
i
<
CAPACITY_SMALL
;
++
i
)
{
EXPECT_NE
(
nullptr
,
dicNodePool
.
getInstance
());
}
EXPECT_EQ
(
nullptr
,
dicNodePool
.
getInstance
());
dicNodePool
.
reset
(
CAPACITY_LARGE
);
for
(
int
i
=
0
;
i
<
CAPACITY_LARGE
;
++
i
)
{
EXPECT_NE
(
nullptr
,
dicNodePool
.
getInstance
());
}
EXPECT_EQ
(
nullptr
,
dicNodePool
.
getInstance
());
dicNodePool
.
reset
(
CAPACITY_SMALL
);
for
(
int
i
=
0
;
i
<
CAPACITY_SMALL
;
++
i
)
{
EXPECT_NE
(
nullptr
,
dicNodePool
.
getInstance
());
}
EXPECT_EQ
(
nullptr
,
dicNodePool
.
getInstance
());
}
}
// namespace
}
// namespace latinime
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