(bad) Test for HttpDeleteWithBody

This commit is contained in:
2023-02-08 14:56:46 -06:00
parent 1e1ecbccee
commit f6220482cd
2 changed files with 5 additions and 1 deletions

View File

@ -489,7 +489,7 @@ public class Auth0PermissionsHelper
/******************************************************************************* /*******************************************************************************
** **
*******************************************************************************/ *******************************************************************************/
class HttpDeleteWithBody extends HttpEntityEnclosingRequestBase static class HttpDeleteWithBody extends HttpEntityEnclosingRequestBase
{ {
/******************************************************************************* /*******************************************************************************

View File

@ -23,6 +23,7 @@ package com.kingsrook.qqq.backend.core.modules.authentication.implementations;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
/******************************************************************************* /*******************************************************************************
@ -49,6 +50,9 @@ class Auth0PermissionsHelperTest
{ {
// is expected. // is expected.
} }
Auth0PermissionsHelper.HttpDeleteWithBody httpDeleteWithBody = new Auth0PermissionsHelper.HttpDeleteWithBody(null);
assertEquals("DELETE", httpDeleteWithBody.getMethod());
} }
} }