Skip to content
Snippets Groups Projects
Commit b021f767 authored by Mark Chance's avatar Mark Chance
Browse files

expect NPE

parent ae3fc63e
No related branches found
No related tags found
2 merge requests!620Update version of default branch to 0.27.0-SNAPSHOT,!535Extend cron to catch about to expire legal tags
Pipeline #248632 failed
Pipeline: Legal

#248633

    ......@@ -14,6 +14,7 @@
    package org.opengroup.osdu.legal.azure.security;
    import org.junit.Assert;
    import org.junit.Before;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    ......@@ -71,7 +72,11 @@ public class WhoamiControllerTest {
    @Test
    public void testWhoamiResponseNullContext() {
    sut = new WhoamiController(null);
    String response = sut.whoami();
    assertEquals("user: " + userName + "<BR>roles: " + roles + "<BR>details: " + details + "<BR>", response);
    try {
    sut.whoami();
    Assert.fail("Auth is null");
    } catch (java.lang.NullPointerException e) {
    Assert.assertNotNull(e);
    }
    }
    }
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment