1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.service;
17
18 import org.junit.Test;
19 import org.kuali.rice.core.api.CoreApiServiceLocator;
20 import org.kuali.rice.krad.bo.Note;
21 import org.kuali.rice.krad.util.NoteType;
22 import org.kuali.test.KRADTestCase;
23
24 import static org.junit.Assert.fail;
25
26
27
28
29
30
31
32 public class NoteServiceTest extends KRADTestCase {
33
34
35
36
37
38
39 @Test public void testNoteSave_LargePersonId() throws Exception {
40 Note note = new Note();
41 note.setAuthorUniversalIdentifier("superLongNameUsersFromWorkflow");
42 note.setNotePostedTimestamp(CoreApiServiceLocator.getDateTimeService().getCurrentTimestamp());
43 note.setNoteText("i like notes");
44 note.setRemoteObjectIdentifier("1209348109834u");
45 note.setNoteTypeCode(NoteType.BUSINESS_OBJECT.getCode());
46 try {
47 KRADServiceLocator.getNoteService().save(note);
48 } catch (Exception e) {
49 fail("Saving a note should not fail");
50 }
51 }
52
53 }
54