* Test of run method, of class SmenyController.
*/
@Test
public void testRun() {
System.out.println("run");
User user = new User();
String[] rights = new String[]{"Zápis","Mazání"};
smenyController.run(user, rights);
boolean expResult = true;
boolean result = smenyController.user.equals(user) && smenyController.prava.equals(rights);
assertEquals(expResult, result);