package com.pgf.mqspring.model; import static org.junit.jupiter.api.Assertions.*; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; class MqcihRequestModelTest23 { MqcihRequestModel testModel; String expectGetStr; String expectEmptyStr; @BeforeEach void setUp() throws Exception { testModel = new MqcihRequestModel(); expectEmptyStr = ""; expectGetStr = "hoge"; } @Test void checkGetAttentionId01() { testModel.setAttentionId(expectGetStr); assertEquals(expectGetStr, testModel.getAttentionId()); } @Test void checkGetAttentionId02() { testModel.setAttentionId(null); assertEquals(expectEmptyStr, testModel.getAttentionId()); } }