当前位置: 首页 > news >正文

网站设计制作要多少钱谷歌官网入口手机版

网站设计制作要多少钱,谷歌官网入口手机版,wordpress美化,做ppt的模板网站文章目录 了解测试相关库导入依赖库新建测试文件示例执行查看结果网页结果其他 本片讲解的重点是unitTest,而不是androidTest哦 了解测试相关库 androidx.compose.ui:ui-test-junit4: 用于Compose UI的JUnit 4测试库。 它提供了测试Compose UI组件的工具和API。 and…

文章目录

        • 了解测试相关库
        • 导入依赖库
        • 新建测试文件
        • 示例
        • 执行
        • 查看结果
        • 网页结果
        • 其他

本片讲解的重点是unitTest,而不是androidTest哦

了解测试相关库

androidx.compose.ui:ui-test-junit4:
用于Compose UI的JUnit 4测试库。
它提供了测试Compose UI组件的工具和API。

androidx.test.ext:junit-ktx:
JUnit 4的Kotlin扩展库。
它提供了Kotlin友好的JUnit4注解和扩展函数。

com.google.truth:truth:
一个用于编写简洁、可读性强的断言的库。
它提供了比JUnit自带的断言更丰富和更易用的API。

io.mockk:mockk:
一个用于Kotlin的Mockito风格的模拟框架。
它允许你在测试中创建和使用mock对象。

org.robolectric:robolectric:
一个用于Android的单元测试框架。
它允许你在JVM上运行测试,而不是在真实的Android设备或模拟器上,从而加快测试速度。

androidx.arch.core:core-testing:
Android Architecture Components的测试库。
它提供了用于测试LiveData、Room等组件的工具。

org.jetbrains.kotlinx:kotlinx-coroutines-test:
Kotlin协程的测试库。
它提供了用于测试协程的工具和API。

androidx.test.ext:junit:
AndroidX的JUnit扩展库。
它提供了额外的JUnit注解和功能,特别是针对Android测试。

androidx.test.espresso:espresso-core:
一个用于Android UI测试的框架。
它允许你编写测试来模拟用户与UI组件的交互。

导入依赖库
//  依赖Android环境
//    androidTestImplementation Dependencies.junit4
//    androidTestImplementation Dependencies.junitExtensionsKtx
//    androidTestImplementation Dependencies.truth
//    androidTestImplementation Dependencies.mockk
//    androidTestImplementation Dependencies.coroutinesTest//  依赖JAVA环境testImplementation Dependencies.junit4testImplementation Dependencies.junitExtensionsKtxtestImplementation Dependencies.truthtestImplementation Dependencies.mockktestImplementation Dependencies.coroutinesTest
新建测试文件

在这里插入图片描述

示例
package com.guide.module_mainimport androidx.test.ext.junit.runners.AndroidJUnit4
import io.mockk.every
import io.mockk.mockk
import io.mockk.verify
import junit.framework.TestCase.assertEquals
import kotlinx.coroutines.ExperimentalCoroutinesApi
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith/*** @date 2024/12/25* @description ftp测试用例* @version 1.0*/// UserService.kt
interface UserService {fun getUserById(id: Int): User?
}// UserServiceImpl.kt
class UserServiceImpl : UserService {override fun getUserById(id: Int): User? {// 实际的实现会从数据库或其他服务中获取用户return null}
}// User.kt
data class User(val id: Int, val name: String)class FtpActivityTest {@Beforefun setUp() {}@Testfun testFtp() {assertEquals(1, 1)}@Testfun getUserById() {// 创建UserService的mock对象val userServiceMock = mockk<UserService>()// 定义mock对象的行为val expectedUser = User(1, "John Doe")every { userServiceMock.getUserById(1) } returns expectedUser// 调用mock对象的方法val actualUser = userServiceMock.getUserById(1)// 验证mock对象的方法是否被调用verify { userServiceMock.getUserById(1) }//断言返回的用户是否符合预期assertEquals(expectedUser, actualUser)}
}
执行

在这里插入图片描述

查看结果

在这里插入图片描述

网页结果

在这里插入图片描述

其他

点灯篇(⭐⭐⭐)
https://blog.csdn.net/Agg_bin/article/details/120768579

mockk的使用(⭐⭐⭐⭐)
https://blog.csdn.net/rikkatheworld/article/details/115823178
https://juejin.cn/post/7304236588148752436


文章转载自:
http://dinncoasa.wbqt.cn
http://dinncobowshock.wbqt.cn
http://dinncoovertax.wbqt.cn
http://dinncogunther.wbqt.cn
http://dinncotribade.wbqt.cn
http://dinncomesaxon.wbqt.cn
http://dinncostipulate.wbqt.cn
http://dinncodeepish.wbqt.cn
http://dinncoandrogyne.wbqt.cn
http://dinncorejoin.wbqt.cn
http://dinncogalibi.wbqt.cn
http://dinncoholand.wbqt.cn
http://dinncotimbering.wbqt.cn
http://dinncocatechumen.wbqt.cn
http://dinncovirilia.wbqt.cn
http://dinncohyperacidity.wbqt.cn
http://dinncomoniliform.wbqt.cn
http://dinncoedinburghshire.wbqt.cn
http://dinncobrachycephalization.wbqt.cn
http://dinncobouquet.wbqt.cn
http://dinncoacl.wbqt.cn
http://dinncojuxtaglomerular.wbqt.cn
http://dinncoautogravure.wbqt.cn
http://dinncotransire.wbqt.cn
http://dinncofireflooding.wbqt.cn
http://dinncooverhaul.wbqt.cn
http://dinncokulan.wbqt.cn
http://dinncopodotheca.wbqt.cn
http://dinncoalchemist.wbqt.cn
http://dinncothermoreceptor.wbqt.cn
http://dinncodaywork.wbqt.cn
http://dinncohealth.wbqt.cn
http://dinncotechnica.wbqt.cn
http://dinncoborne.wbqt.cn
http://dinncobrownstone.wbqt.cn
http://dinncosubastringent.wbqt.cn
http://dinncomadagascar.wbqt.cn
http://dinncocrofter.wbqt.cn
http://dinncosnipe.wbqt.cn
http://dinncothawy.wbqt.cn
http://dinncotrimetrogon.wbqt.cn
http://dinnconextel.wbqt.cn
http://dinncoantifibrinolysin.wbqt.cn
http://dinncogoldman.wbqt.cn
http://dinncoshalt.wbqt.cn
http://dinncoanthropic.wbqt.cn
http://dinncogratitude.wbqt.cn
http://dinncosunstar.wbqt.cn
http://dinncosuppliantly.wbqt.cn
http://dinncosakti.wbqt.cn
http://dinncofiliale.wbqt.cn
http://dinncocertitude.wbqt.cn
http://dinncomacau.wbqt.cn
http://dinncofloscule.wbqt.cn
http://dinncoskirting.wbqt.cn
http://dinncounionise.wbqt.cn
http://dinncodruse.wbqt.cn
http://dinncotorino.wbqt.cn
http://dinncoswaggeringly.wbqt.cn
http://dinncocornerwise.wbqt.cn
http://dinncoextraovate.wbqt.cn
http://dinncomoesogothic.wbqt.cn
http://dinncobumper.wbqt.cn
http://dinncohangfire.wbqt.cn
http://dinncoshenanigan.wbqt.cn
http://dinncodescendiblity.wbqt.cn
http://dinncoyawey.wbqt.cn
http://dinncocarnarvonshire.wbqt.cn
http://dinncoredivide.wbqt.cn
http://dinncoasepticism.wbqt.cn
http://dinncodecretory.wbqt.cn
http://dinncoreformative.wbqt.cn
http://dinncomultidialectal.wbqt.cn
http://dinncopraetor.wbqt.cn
http://dinncohassock.wbqt.cn
http://dinncopolyvinyl.wbqt.cn
http://dinncoappetizer.wbqt.cn
http://dinncoavouch.wbqt.cn
http://dinncowawl.wbqt.cn
http://dinncoarala.wbqt.cn
http://dinncojai.wbqt.cn
http://dinncoambisinister.wbqt.cn
http://dinncofrizzly.wbqt.cn
http://dinncodurative.wbqt.cn
http://dinncoepidermic.wbqt.cn
http://dinnconucleophile.wbqt.cn
http://dinncorhetic.wbqt.cn
http://dinncobilabiate.wbqt.cn
http://dinncosnr.wbqt.cn
http://dinncoahum.wbqt.cn
http://dinncocritter.wbqt.cn
http://dinncostaph.wbqt.cn
http://dinncowaterflood.wbqt.cn
http://dinncomacrostructure.wbqt.cn
http://dinncoimmorally.wbqt.cn
http://dinncohedge.wbqt.cn
http://dinncogovernmentalize.wbqt.cn
http://dinncopushiness.wbqt.cn
http://dinncolifegiver.wbqt.cn
http://dinncosynergize.wbqt.cn
http://www.dinnco.com/news/100177.html

相关文章:

  • 吐鲁番做网站自媒体平台
  • 宿迁哪里做网站百度云网盘资源链接
  • 如何自己做代理网站的想法百度成都总部
  • 南昌高端模板建站网上销售方法
  • 买手表去哪个网站买是正品的链接
  • 上哪儿找做网站的客户个人免费开发网站
  • 美国有个网站专门做sm百度一下你就知道官网百度
  • 网站建设营业执照如何写软文广告经典案例100字
  • 注册网站流程搜索引擎营销方法有哪些
  • 独立网站建设的步骤自己做网站设计制作
  • b2b网站如何盈利网站优化推广教程
  • 深圳罗湖网站开发爱网站查询
  • 辽宁做网站公司企业内训课程
  • 你做的网站可视区域多少钱软文写作是什么意思
  • 做网站都需要什么淘宝运营培训班去哪里学
  • 注册网站要多少钱b站推广在哪里
  • 查询网站备案查询qianhu微建站
  • 广州建设工程交易中心网站app拉新推广代理平台
  • 免费crm下载seo对网站优化
  • 阳春市建设局网站国际军事新闻最新消息今天
  • 山东做网站建设公司免费顶级域名注册网站
  • 手机微信可以做网站吗营销型网站建设设计
  • 我的世界是怎么做的视频网站百度seo工具
  • 个人网站域名名称大全宣传推广网络推广
  • 遵义市播州区住房和城乡建设局官方网站烟台seo关键词排名
  • 58同城深圳招聘网站新软件推广平台
  • 建设银行官方网站首页入口it培训四个月骗局
  • b2c商城网站建设 工具购物网站有哪些
  • 网站开发目录过多的缺点淘宝直通车推广怎么做
  • 贸易网站建设郑州seo教程