blob: d0b0508d23070e235a00f6ddb51dd5632272c4c6 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package io.flutter.plugins.urllauncher;
import static org.junit.Assert.assertEquals;
import java.util.Collections;
import org.junit.Test;
public class WebViewActivityTest {
@Test
public void extractHeaders_returnsEmptyMapWhenHeadersBundleNull() {
assertEquals(WebViewActivity.extractHeaders(null), Collections.emptyMap());
}
}