From f36db3c7985dd981757597dc2e06cba9253f2a60 Mon Sep 17 00:00:00 2001 From: William Kim Date: Mon, 24 Jun 2013 11:49:43 -0400 Subject: [PATCH] init commit TestPlainAuthRequestUrlBuilder. --- .../impl/TestPlainAuthRequestUrlBuilder.java | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 openid-connect-client/src/test/java/org/mitre/openid/connect/client/service/impl/TestPlainAuthRequestUrlBuilder.java diff --git a/openid-connect-client/src/test/java/org/mitre/openid/connect/client/service/impl/TestPlainAuthRequestUrlBuilder.java b/openid-connect-client/src/test/java/org/mitre/openid/connect/client/service/impl/TestPlainAuthRequestUrlBuilder.java new file mode 100644 index 000000000..62c415ad4 --- /dev/null +++ b/openid-connect-client/src/test/java/org/mitre/openid/connect/client/service/impl/TestPlainAuthRequestUrlBuilder.java @@ -0,0 +1,34 @@ +/******************************************************************************* + * Copyright 2013 The MITRE Corporation + * and the MIT Kerberos and Internet Trust Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ******************************************************************************/ +package org.mitre.openid.connect.client.service.impl; + +import static org.junit.Assert.*; + +import org.junit.Test; + +/** + * @author wkim + * + */ +public class TestPlainAuthRequestUrlBuilder { + + @Test + public void test() { + assertTrue("Not yet implemented", true); + } + +}