Skip to content

Commit c6685e9

Browse files
test: add unit test for actor model #3251
1 parent 9ad06e6 commit c6685e9

File tree

2 files changed

+69
-1
lines changed

2 files changed

+69
-1
lines changed

Diff for: actor-model/pom.xml

+16-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,22 @@
4242
<name>Actor Model</name>
4343

4444
<dependencies>
45-
<!-- Add any dependencies you need (optional) -->
45+
<!-- JUnit 5 Jupiter API -->
46+
<dependency>
47+
<groupId>org.junit.jupiter</groupId>
48+
<artifactId>junit-jupiter-api</artifactId>
49+
<version>5.10.0</version>
50+
<scope>test</scope>
51+
</dependency>
52+
53+
<!-- JUnit 5 Jupiter Engine -->
54+
<dependency>
55+
<groupId>org.junit.jupiter</groupId>
56+
<artifactId>junit-jupiter-engine</artifactId>
57+
<version>5.10.0</version>
58+
<scope>test</scope>
59+
</dependency>
4660
</dependencies>
4761

62+
4863
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
4+
* The MIT License
5+
* Copyright © 2014-2022 Ilkka Seppälä
6+
*
7+
* Permission is hereby granted, free of charge, to any person obtaining a copy
8+
* of this software and associated documentation files (the "Software"), to deal
9+
* in the Software without restriction, including without limitation the rights
10+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
* copies of the Software, and to permit persons to whom the Software is
12+
* furnished to do so, subject to the following conditions:
13+
*
14+
* The above copyright notice and this permission notice shall be included in
15+
* all copies or substantial portions of the Software.
16+
*
17+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23+
* THE SOFTWARE.
24+
*/
25+
package com.iluwatar.actor;
26+
27+
import static org.junit.jupiter.api.Assertions.*;
28+
29+
import com.iluwatar.actormodel.Actor;
30+
import com.iluwatar.actormodel.ActorSystem;
31+
import com.iluwatar.actormodel.ExampleActor;
32+
import com.iluwatar.actormodel.ExampleActor2;
33+
import com.iluwatar.actormodel.Message;
34+
import org.junit.jupiter.api.Test;
35+
36+
public class ActorModelTest {
37+
38+
@Test
39+
public void testMessagePassing() {
40+
ActorSystem system = new ActorSystem();
41+
42+
Actor srijan = new ExampleActor(system);
43+
Actor ansh = new ExampleActor2(system);
44+
45+
system.startActor(srijan);
46+
system.startActor(ansh);
47+
48+
ansh.send(new Message("Hello Srijan", srijan.getActorId()));
49+
50+
// You can improve this later by capturing output or using mocks
51+
assertNotNull(srijan.getActorId());
52+
}
53+
}

0 commit comments

Comments
 (0)