2016-01-16 09:57:12 -05:00
|
|
|
import junit.framework.TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by Vladimir Eliezer Tokarev on 1/16/2016.
|
|
|
|
* Tests the Simple Registry contents
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class SimpleRegistryTest extends TestCase{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize SimpleRegistry object
|
|
|
|
*/
|
|
|
|
public void setUp(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that add voter creates new correct bulletin board message and add the voter
|
|
|
|
*/
|
|
|
|
public void testAddVoter(){
|
2016-01-16 09:58:09 -05:00
|
|
|
|
2016-01-16 09:57:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that set voted posts creates correct bulletin board message and sets that the user have been voted
|
|
|
|
*/
|
|
|
|
public void testSetVoted(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that add to group creates correct bulletin board message and adds a user to a group
|
|
|
|
*/
|
|
|
|
public void testAddToGroup(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that remove from group creates correct bulletin board message and removes the user from a group
|
|
|
|
*/
|
|
|
|
public void testRemoveFromGroup(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that get groups retrieves the right groups the user are in
|
|
|
|
*/
|
|
|
|
public void testGetGroups(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that the personal data outputted about the user is right
|
|
|
|
*/
|
|
|
|
public void testGetPersonalIDDetails(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|