New unit test to ensure the managers are the same, work for #7
This commit is contained in:
		@@ -51,11 +51,17 @@ public class TestJailAPI {
 | 
				
			|||||||
        assertNotNull(main.getPrisonerManager());
 | 
					        assertNotNull(main.getPrisonerManager());
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
 | 
					    @Test
 | 
				
			||||||
 | 
					    public void verifyManagersAreTheSame() {
 | 
				
			||||||
 | 
					        assertThat("The HandCuff Manager references are different.", JailsAPI.getHandCuffManager(), is(main.getHandCuffManager()));
 | 
				
			||||||
 | 
					        assertThat("The Jail Manager references are different.", JailsAPI.getJailManager(), is(main.getJailManager()));
 | 
				
			||||||
 | 
					        assertThat("The Prisoner Manager references are different.", JailsAPI.getPrisonerManager(), is(main.getPrisonerManager()));
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @Test
 | 
					    @Test
 | 
				
			||||||
    public void testHandCuffManagerAPI() {
 | 
					    public void testHandCuffManagerAPI() {
 | 
				
			||||||
        UUID id = UUID.randomUUID();
 | 
					        UUID id = UUID.randomUUID();
 | 
				
			||||||
        Location loc = new Location(main.getServer().getWorld("world"), 11.469868464778077, 65.0, -239.27944647045672, Float.valueOf("38.499817"), Float.valueOf("2.0000453"));
 | 
					        Location loc = new Location(main.getServer().getWorld("world"), 11.469868464778077, 65.0, -239.27944647045672, Float.valueOf("38.499817"), Float.valueOf("2.0000453"));
 | 
				
			||||||
        assertThat("The HandCuff Managers are different.", JailsAPI.getHandCuffManager(), is(main.getHandCuffManager()));
 | 
					 | 
				
			||||||
        assertFalse("The test id of someone is already handcuffed.", JailsAPI.getHandCuffManager().isHandCuffed(id));
 | 
					        assertFalse("The test id of someone is already handcuffed.", JailsAPI.getHandCuffManager().isHandCuffed(id));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        JailsAPI.getHandCuffManager().addHandCuffs(id, loc);
 | 
					        JailsAPI.getHandCuffManager().addHandCuffs(id, loc);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user