Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Ray Milkey
2014-12-01 10:40:14 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ff5177375c484da115d082d5fd9c3bc21fdc72b5
ff517737
1 parent
91471863
Fix Javadoc typos
Change-Id: Ieaf96e9e4bb217b1def0edb080cf4ea6af533b10
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
core/api/src/test/java/org/onlab/onos/net/flow/DefaultTrafficSelectorTest.java
core/api/src/test/java/org/onlab/onos/net/flow/FlowIdTest.java
core/api/src/test/java/org/onlab/onos/net/flow/DefaultTrafficSelectorTest.java
View file @
ff51773
...
...
@@ -72,13 +72,18 @@ public class DefaultTrafficSelectorTest {
}
/**
* Hamcrest matcher to check that a
collection of Intents contains an
*
Intent with the specified Intent Id
.
* Hamcrest matcher to check that a
selector contains a
*
Criterion with the specified type
.
*/
public
static
final
class
CriterionExistsMatcher
extends
TypeSafeMatcher
<
TrafficSelector
>
{
private
final
Criterion
.
Type
type
;
/**
* Constructs a matcher for the given criterion type.
*
* @param typeValue criterion type to match
*/
public
CriterionExistsMatcher
(
Criterion
.
Type
typeValue
)
{
type
=
typeValue
;
}
...
...
@@ -102,7 +107,7 @@ public class DefaultTrafficSelectorTest {
/**
*
Factory method to create
a criterion type matcher. Returns a matcher
*
Creates
a criterion type matcher. Returns a matcher
* for a criterion with the given type.
*
* @param type type of Criterion to match
...
...
core/api/src/test/java/org/onlab/onos/net/flow/FlowIdTest.java
View file @
ff51773
...
...
@@ -34,7 +34,7 @@ public class FlowIdTest {
final
FlowId
flowId2
=
FlowId
.
valueOf
(
2
);
/**
* Checks that the
DefaultFlowRule
class is immutable.
* Checks that the
FlowId
class is immutable.
*/
@Test
public
void
testImmutability
()
{
...
...
@@ -42,7 +42,7 @@ public class FlowIdTest {
}
/**
* Checks the operation of equals(), hashCode and toString() methods.
* Checks the operation of equals(), hashCode
()
and toString() methods.
*/
@Test
public
void
testEquals
()
{
...
...
Please
register
or
login
to post a comment