# Software Engineering Test 7 **Repository Path**: errrrdz/software-engineering-test-7 ## Basic Information - **Project Name**: Software Engineering Test 7 - **Description**: 软件测试第七次实验内容 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-05-07 - **Last Updated**: 2024-08-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README <<<<<<< HEAD # 软件测试实验六 #### 介绍 软件测试实验六 #### 软件架构 软件架构说明 #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 1. xxxx 2. xxxx 3. xxxx #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) ======= # JPacman [![Build Status](https://travis-ci.com/SERG-Delft/jpacman.svg?branch=master)](https://travis-ci.com/SERG-Delft/jpacman) ## About Pacman-like game used for teaching software testing. It exposes students to the use of git, Gradle, JUnit, and mockito. Parts of the code are well tested, whereas others are left untested intentionally. As a student in software testing, you can extend the test suite, or use the codebase to build extensions in a test-driven way. As a teacher, you can use JPacman to create your own testing exercises. We have developed and are using this code at a software testing course at Delft University of Technology, The Netherlands. Teachers interested in seeing the exercises I use there are invited to contact me. Other universities who have used this material include Antwerp, Mons, Eindhoven, and UBC (Vancouver). At TU Delft, we use it in combination with GitLab as continuous integration and feedback server. If you have any suggestions on how to improve JPacman, please do not hesitate to contact us, open an issue, or provide a pull request. Since testing is deliberately left as an exercise, pull requests that "solve" exercises or offer full coverage are less likely to be merged. Main contributors: * Arie van Deursen (versions 1.0-5.x, 2003-2013, updates to versions 6.x and further, 2014-...) * Jeroen Roosen (major rewrite, version 6.0, 2014) ## Getting Started ### IntelliJ 1. Git clone the project 2. Open IntelliJ and create new project "from existing sources" 3. Select 'Gradle' in the following screen as external model, and click 'Next' 4. In the next screen, optionally adjust the Gradle options and click 'Finish' 5. To see JPacman in action: run `nl.tudelft.jpacman.Launcher` 5. To run the test suite in IntelliJ: right-click on a test or directory -> `Run` or `Run ...Test` ### Command line 1. Git clone the project 2. To see JPacman in action: `./gradlew run` 3. To run the test suite and static analysis tools: `./gradlew check` 1. For tests only run `./gradlew test` 2. For static analysis tools only run `./gradlew staticAnalysis` >>>>>>> b712490 (软件测试实验六)