Checkpoint: Added tests to impleement
This commit is contained in:
@ -0,0 +1,33 @@
|
||||
package com.plannaplan.services;
|
||||
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@ContextConfiguration
|
||||
public class AssignmentServiceTest {
|
||||
|
||||
// @Autowired
|
||||
// private AssignmentService service;
|
||||
|
||||
// @Autowired
|
||||
// private UserService userService;
|
||||
|
||||
@Test
|
||||
public void shouldSaveAssignment() {
|
||||
assertTrue("Not implemented", false);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void shouldGetCommisionAssignments() {
|
||||
assertTrue("Not implemented", false);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user