diff options
Diffstat (limited to 'autofill-parser/src/test')
-rw-r--r-- | autofill-parser/src/test/kotlin/mozilla/components/lib/publicsuffixlist/PublicSuffixListLoaderTest.kt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/autofill-parser/src/test/kotlin/mozilla/components/lib/publicsuffixlist/PublicSuffixListLoaderTest.kt b/autofill-parser/src/test/kotlin/mozilla/components/lib/publicsuffixlist/PublicSuffixListLoaderTest.kt new file mode 100644 index 00000000..a4b7d4eb --- /dev/null +++ b/autofill-parser/src/test/kotlin/mozilla/components/lib/publicsuffixlist/PublicSuffixListLoaderTest.kt @@ -0,0 +1,18 @@ +/* + * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved. + * SPDX-License-Identifier: GPL-3.0-only + */ + +package mozilla.components.lib.publicsuffixlist + +import org.junit.Test + +internal class PublicSuffixListLoaderTest { + @Test + fun testLoadingBundledPublicSuffixList() { + requireNotNull(javaClass.classLoader).getResourceAsStream("publicsuffixes").buffered().use { + stream -> + PublicSuffixListLoader.load(stream) + } + } +} |