public void GetEventsTest()
 {
     EventModel target = new EventModel(); // TODO: Initialize to an appropriate value
     int userId = 2; // TODO: Initialize to an appropriate value
     List<EventInfo> actual;
     actual = target.GetEvents(userId);
 }
 public void CreateEventTest()
 {
     EventModel target = new EventModel();
     int userId = 2;
     string description = "sdasdassadasddas";
     int fileId = 1033;
     target.CreateEvent(userId, description, fileId);
 }