Add additional debug messages

This commit is contained in:
SiboVG 2023-02-02 02:20:02 +00:00
parent b89dcf5dbd
commit a412100140

View File

@ -17,8 +17,8 @@ public class WelcomeInfoTest extends BaseTestCase {
public void testWelcomeInfo() throws Exception { public void testWelcomeInfo() throws Exception {
// Test the welcome info for the current build version // Test the welcome info for the current build version
String welcomeInfo = WelcomeInfoRetriever.retrieveWelcomeInfo(); String welcomeInfo = WelcomeInfoRetriever.retrieveWelcomeInfo();
assertNotNull(welcomeInfo); assertNotNull("Current release version not present in release notes", welcomeInfo);
assertTrue(welcomeInfo.length() > 0); assertTrue("Body of release notes is empty", welcomeInfo.length() > 0);
// Test the release info for a bogus release version // Test the release info for a bogus release version
welcomeInfo = WelcomeInfoRetriever.retrieveWelcomeInfo("bogus release"); welcomeInfo = WelcomeInfoRetriever.retrieveWelcomeInfo("bogus release");