Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Lucas Cavalcante
cloudsimplus
Commits
7333fcc1
Unverified
Commit
7333fcc1
authored
Apr 29, 2018
by
Manoel Campos
Browse files
Updates dependencies
Signed-off-by:
Manoel Campos
<
manoelcampos@gmail.com
>
parent
24a918fe
Changes
4
Hide whitespace changes
Inline
Side-by-side
cloudsim-plus/pom.xml
View file @
7333fcc1
...
...
@@ -237,7 +237,7 @@
<artifactId>
maven-surefire-plugin
</artifactId>
<!-- There is some problem with the version 2.19.1 or with
Netbeans 8.0.2 that the JUnit GUI is not shown at the IDE-->
<version>
2.2
0.1
</version>
<version>
2.2
1.0
</version>
</plugin>
<plugin>
...
...
cloudsim-plus/src/main/java/org/cloudbus/cloudsim/network/IcmpPacket.java
View file @
7333fcc1
...
...
@@ -184,12 +184,11 @@ public class IcmpPacket implements NetworkPacket<SimEntity> {
}
sb
.
append
(
"\nRound Trip Time : "
)
.
append
(
num
.
format
(
getTotalResponseTime
()))
.
append
(
" seconds"
)
.
append
(
"\nNumber of Hops : "
)
.
append
(
getNumberOfHops
())
.
append
(
"\nBottleneck Bandwidth : "
)
.
append
(
bandwidth
).
append
(
" bits/s"
);
.
append
(
num
.
format
(
getTotalResponseTime
()))
.
append
(
" seconds\nNumber of Hops : "
)
.
append
(
getNumberOfHops
())
.
append
(
"\nBottleneck Bandwidth : "
)
.
append
(
bandwidth
).
append
(
" bits/s"
);
return
sb
.
toString
();
}
...
...
cloudsim-plus/src/main/java/org/cloudbus/cloudsim/network/topologies/BriteNetworkTopology.java
View file @
7333fcc1
...
...
@@ -33,7 +33,7 @@ import org.cloudbus.cloudsim.util.ResourceLoader;
* @author Anton Beloglazov
* @since CloudSim Toolkit 1.0
*/
public
class
BriteNetworkTopology
implements
NetworkTopology
{
public
final
class
BriteNetworkTopology
implements
NetworkTopology
{
/**
* The BRITE id to use for the next node to be created in the network.
...
...
cloudsim-plus/src/test/java/org/cloudbus/cloudsim/resources/PeTest.java
View file @
7333fcc1
...
...
@@ -65,7 +65,7 @@ public class PeTest {
@Test
public
void
testSetStatus
()
{
PeSimple
pe
=
createPe
();
final
PeSimple
pe
=
createPe
();
assertEquals
(
PeSimple
.
Status
.
FREE
,
pe
.
getStatus
());
pe
.
setStatus
(
PeSimple
.
Status
.
BUSY
);
assertEquals
(
PeSimple
.
Status
.
BUSY
,
pe
.
getStatus
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment