[go: nahoru, domu]

blob: a0941342a4d34b9b862ace962c905fdaeb02f071 [file] [log] [blame]
/*
* Copyright 2020 The Android Open Source Project
*
* 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 androidx.ui.text.platform
import androidx.test.filters.SmallTest
import androidx.ui.text.font.FontFamily
import androidx.ui.text.font.FontStyle
import androidx.ui.text.font.FontSynthesis
import androidx.ui.text.font.FontWeight
import androidx.ui.text.matchers.assertThat
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.junit.MockitoJUnitRunner
@RunWith(MockitoJUnitRunner::class)
@SmallTest
class GenerifFontFamilyCacheTest {
@Test
fun cached_instance_for_the_same_input() {
val typeface = AndroidGenericFontFamilyTypeface(FontFamily.SansSerif)
assertThat(
typeface.getNativeTypeface(FontWeight.Bold, FontStyle.Normal, FontSynthesis.None)
).isSameInstanceAs(
typeface.getNativeTypeface(FontWeight.Bold, FontStyle.Normal, FontSynthesis.None)
)
}
@Test
fun not_cached_instance_if_different_input() {
val typeface = AndroidGenericFontFamilyTypeface(FontFamily.SansSerif)
assertThat(
typeface.getNativeTypeface(FontWeight.Bold, FontStyle.Normal, FontSynthesis.None)
).isNotSameInstanceAs(
typeface.getNativeTypeface(FontWeight.Bold, FontStyle.Italic, FontSynthesis.None)
)
}
}