04 2025 档案

摘要:package com.example.baoli.entity; import jakarta.persistence.*;import java.time.LocalDateTime; @Entity@Table(name = "outbound_records")public class Ou 阅读全文
posted @ 2025-04-30 23:36 混沌武士丞 阅读(7) 评论(0) 推荐(0)
摘要:package com.example.baoli.entity; import jakarta.persistence.*;import java.time.LocalDateTime; @Entity@Table(name = "procurement_records")public class 阅读全文
posted @ 2025-04-29 23:26 混沌武士丞 阅读(4) 评论(0) 推荐(0)
摘要:package com.example.baoli.entity; import jakarta.persistence.*;import java.time.LocalDateTime; @Entity@Table(name = "return_records")public class Retu 阅读全文
posted @ 2025-04-28 23:41 混沌武士丞 阅读(10) 评论(0) 推荐(0)
摘要:实验一 黑盒测试 一、实验目的 1、 掌握黑盒测试的基础知识; 2、 掌握黑盒测试的检查内容及测试目的; 3、 掌握黑盒测试的几种基本测试方法:等价类划分方法、边界值分析方法、因果图法和决策表法; 二、实验要求 1、 复习有关内容,理解黑盒测试; 2、 掌握等价类划分、边界值分析方法、因果图法和决策 阅读全文
posted @ 2025-04-27 23:42 混沌武士丞 阅读(13) 评论(0) 推荐(0)
摘要:实验二白盒测试 一、实验目的 1、 掌握白盒测试的基础知识; 2、 掌握白盒测试的检查内容及测试目的; 3、 掌握黑盒测试的几种基本测试方法:语句覆盖、判定覆盖、条件覆盖、判定/条件覆盖、组合覆盖、路径覆盖。 二、实验要求 1、 复习有关内容,理解白盒测试; 2、 掌握语句覆盖、判定覆盖、条件覆盖、 阅读全文
posted @ 2025-04-26 23:45 混沌武士丞 阅读(13) 评论(0) 推荐(0)
摘要:package com.example.baoli.entity; import jakarta.persistence.*;import java.time.LocalDateTime; @Entity@Table(name = "scrap_records")public class Scrap 阅读全文
posted @ 2025-04-25 23:36 混沌武士丞 阅读(8) 评论(0) 推荐(0)
摘要:实验四 单元测试2 一、实验目的 1、掌握单元测试的基本理论和作用。 2、掌握典型单元测试工具 JUnit 的使用 二、实验内容 实验任务 1 : 请按以下操作步骤完成一个基本的 JUnit 测试实例。 以下是在IntelliJ IDEA环境下使用JUnit对Calculator类进行单元测试的详细 阅读全文
posted @ 2025-04-24 23:32 混沌武士丞 阅读(15) 评论(0) 推荐(0)
摘要:package com.example.baoli.entity; import jakarta.persistence.*;import java.time.LocalDateTime; @Entity@Table(name = "spare_parts")public class SparePa 阅读全文
posted @ 2025-04-23 23:29 混沌武士丞 阅读(6) 评论(0) 推荐(0)
摘要:实验六 selenium工具测试 一、实验目的 1、掌握 Selenium 自动化测试环境搭建 2、学习录制与回放测试脚本 3、实现检查点验证与参数化测试 二、实验内容 实验前准备 l 安装Firefox浏览器 1. 访问 [Firefox官网](https://www.mozilla.org/fi 阅读全文
posted @ 2025-04-21 23:36 混沌武士丞 阅读(6) 评论(0) 推荐(0)
摘要:4024实验七 性能测试 一、实验目的 1、正确安装Jmeter; 2、能够完成脚本录制,运行脚本,查看运行结果; 3、完成某网站的性能测试。 二、实验要求 1、 学习ppt,理解性能测试; 2、 掌握Jmeter使用方法; 3、 对具体网站,能分别使用相应的工具完成脚本录制,运行脚本,查看运行结果 阅读全文
posted @ 2025-04-20 20:30 混沌武士丞 阅读(8) 评论(0) 推荐(0)
摘要:package com.example.baoli.entity; import jakarta.persistence.*;import java.time.LocalDateTime; @Entity@Table(name = "transfer_records")public class Tr 阅读全文
posted @ 2025-04-18 23:24 混沌武士丞 阅读(7) 评论(0) 推荐(0)
摘要:package com.example.baoli.entity; import jakarta.persistence.*;import java.time.LocalDateTime; @Entity@Table(name = "work_orders")public class WorkOrd 阅读全文
posted @ 2025-04-17 23:37 混沌武士丞 阅读(5) 评论(0) 推荐(0)
摘要:package com.example.baoli.entity; import jakarta.persistence.*;import java.time.LocalDateTime; @Entity@Table(name = "workorder_records")public class W 阅读全文
posted @ 2025-04-16 23:56 混沌武士丞 阅读(6) 评论(0) 推荐(0)
摘要:package com.example.baoli.repository; import com.example.baoli.entity.ApprovalRecord;import org.springframework.data.jpa.repository.JpaRepository;impo 阅读全文
posted @ 2025-04-15 23:11 混沌武士丞 阅读(8) 评论(0) 推荐(0)
摘要:package com.example.baoli.service; import com.example.baoli.entity.ApprovalRecord;import com.example.baoli.entity.SparePart;import com.example.baoli.e 阅读全文
posted @ 2025-04-12 22:55 混沌武士丞 阅读(14) 评论(0) 推荐(0)
摘要:package com.example.baoli.service; import com.example.baoli.entity.*;import com.example.baoli.repository.*;import org.springframework.beans.factory.an 阅读全文
posted @ 2025-04-11 23:42 混沌武士丞 阅读(10) 评论(0) 推荐(0)
摘要:package com.example.baoli.service; import com.example.baoli.entity.FactoryReturnRecord;import com.example.baoli.repository.FactoryReturnRecordReposito 阅读全文
posted @ 2025-04-10 23:07 混沌武士丞 阅读(6) 评论(0) 推荐(0)
摘要:package com.example.baoli.service; import com.example.baoli.entity.InboundRecord;import com.example.baoli.entity.SparePart;import com.example.baoli.re 阅读全文
posted @ 2025-04-08 23:41 混沌武士丞 阅读(9) 评论(0) 推荐(0)
摘要:package com.example.baoli.service; import com.example.baoli.entity.MaintenanceRecord;import com.example.baoli.repository.MaintenanceRecordRepository;i 阅读全文
posted @ 2025-04-07 22:59 混沌武士丞 阅读(11) 评论(0) 推荐(0)
摘要:package com.example.baoli.service; import com.example.baoli.entity.OutboundRecord;import com.example.baoli.entity.SparePart;import com.example.baoli.r 阅读全文
posted @ 2025-04-06 23:34 混沌武士丞 阅读(11) 评论(0) 推荐(0)
摘要:package com.example.baoli.service; import com.example.baoli.entity.ProcurementRecord;import com.example.baoli.entity.SparePart;import com.example.baol 阅读全文
posted @ 2025-04-03 23:50 混沌武士丞 阅读(13) 评论(0) 推荐(0)
摘要:package com.example.baoli.service; import com.example.baoli.entity.ReturnRecord;import com.example.baoli.repository.ReturnRecordRepository;import org. 阅读全文
posted @ 2025-04-02 23:37 混沌武士丞 阅读(9) 评论(0) 推荐(0)
摘要:package com.example.baoli.service; import com.example.baoli.entity.ScrapRecord;import com.example.baoli.repository.ScrapRecordRepository;import org.sp 阅读全文
posted @ 2025-04-01 23:16 混沌武士丞 阅读(6) 评论(0) 推荐(0)