1
2
3
4
5
6
7
8
9
10
11
12
13
14 package org.kuali.mobility.news.util;
15
16 import org.junit.Before;
17 import org.junit.Test;
18 import org.kuali.mobility.news.entity.NewsArticleImpl;
19
20 import static org.junit.Assert.assertTrue;
21
22
23
24
25 public class NewsArticleTransformTest {
26
27 private NewsArticleTransform transform;
28
29 @Before
30 public void setUpTest() {
31 setTransform(new NewsArticleTransform());
32 }
33
34 @Test
35 public void testTransformWithBadObject() {
36 NewsArticleImpl article = getTransform().transform(new String("bob"));
37 assertTrue("Article was not null and should have been.",article==null);
38 }
39
40 @Test
41 public void testTransform() {
42 NewsArticleImpl article = new NewsArticleImpl();
43 article.setTitle("Test Article");
44 article.setArticleId("ABCDEFG");
45 article.setDescription("Test Description");
46 article.setSourceId(Long.parseLong("50"));
47
48 NewsArticleImpl article2 = getTransform().transform(article);
49 assertTrue("Article is null and should not be.", article2 != null);
50 assertTrue("Article does not match and should.", article.getArticleId()==article2.getArticleId() && article.getTitle()==article2.getTitle());
51 }
52
53 public NewsArticleTransform getTransform() {
54 return transform;
55 }
56
57 public void setTransform(NewsArticleTransform transform) {
58 this.transform = transform;
59 }
60 }