/v3.2/nimbits-sdk/test/AuthTest.java
http://nimbits-server.googlecode.com/ · Java · 41 lines · 14 code · 9 blank · 18 comment · 0 complexity · d95920a556a8de34723a46866fb662ff MD5 · raw file
- /*
- * Copyright (c) 2010 Tonic Solutions LLC.
- *
- * http://www.nimbits.com
- *
- *
- * Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.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.gnu.org/licenses/gpl.html
- *
- * 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.
- */
- import org.junit.Test;
- import java.io.IOException;
- import static org.junit.Assert.assertTrue;
- /**
- * Created by bsautner
- * User: benjamin
- * Date: 7/30/11
- * Time: 10:14 AM
- */
- public class AuthTest {
- @Test
- public void testAuth() throws IOException {
- assertTrue(Common.clientSupportOnProd().isLoggedIn());
- assertTrue(Common.client().isLoggedIn());
- }
- @Test
- public void testAuth2() throws IOException {
- assertTrue(Common.client().isLoggedIn());
- }
- }