blob: c7bdb7b27cfc8ceed61d598c30e669578c7f93a7 [file] [log] [blame]
Ningyuan Wanga6ea5702017-02-13 11:26:15 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.net.wifi;
18
19import static org.junit.Assert.assertTrue;
20import static org.junit.Assert.assertEquals;
21
22import org.junit.Test;
23
24/**
25 * Unit tests for {@link android.net.wifi.WifiSsid}.
26 */
27public class WifiSsidTest {
28
29 private static final byte[] TEST_SSID =
30 new byte[] {'G', 'o', 'o', 'g', 'l', 'e', 'G', 'u', 'e', 's', 't'};
31 /**
32 * Check that createFromByteArray() works.
33 */
34 @Test
35 public void testCreateFromByteArray() {
36 WifiSsid wifiSsid = WifiSsid.createFromByteArray(TEST_SSID);
37 assertTrue(wifiSsid != null);
38 assertEquals(new String(TEST_SSID), wifiSsid.toString());
39 }
40}