public void show() throws Exception {
MockUserSession.set().addComponentPermission(UserRole.CODEVIEWER, "SonarQube", TEST_PLAN_KEY);
when(snapshotPerspectives.as(MutableTestPlan.class, TEST_PLAN_KEY)).thenReturn(testPlan);
MutableTestCase testCase1 = testCase("test1", TestCase.Status.OK, 10L, 32, null, null);
MutableTestCase testCase2 = testCase("test2", TestCase.Status.ERROR, 97L, 21, "expected:<true> but was:<false>",
"java.lang.AssertionError: expected:<true> but was:<false>\n\t" +
"at org.junit.Assert.fail(Assert.java:91)\n\t" +
"at org.junit.Assert.failNotEquals(Assert.java:645)\n\t" +
"at org.junit.Assert.assertEquals(Assert.java:126)\n\t" +
"at org.junit.Assert.assertEquals(Assert.java:145)\n");