书栈网 · BookStack 本次搜索耗时 0.034 秒,为您找到 1030 个相关结果.
  • 条件测试

    条件测试 练习 小结 读后有收获可以支付宝请作者喝咖啡: 条件测试 在运行测试的时候,有些时候,我们需要排出某些@Test 方法,不要让它运行,这时,我们就可以给它标记一个@Disabled : @Disabled @Test void testBug101 () { // 这个测试不会运行 } 为什么我...
  • Create Command Flags

    Create Command Flags Language/Test Features Groovy Kotlin Build Tool Create Command Flags The create-* commands will generate a basic Micronaut project, with optional flags...
  • Create Command Flags

    Create Command Flags Language/Test Features Groovy Kotlin Build Tool Create Command Flags The create-* commands will generate a basic Micronaut project, with optional flags...
  • Testing Your Application

    1341 2021-07-08 《Quarkus v1.7 Guides》
    Quarkus - Testing Your Application 1. Prerequisites 2. Architecture 3. Solution 4. Recap of HTTP based Testing in JVM mode 4.1. Controlling the test port 4.2. Injecting a URI ...
  • 记录测试结果和构建包

    记录测试和构建结果 记录测试和构建结果 虽然测试是良好的持续交付过程中的关键部分,但大多数人并不希望筛选数千行控制台输出来查找有关失败测试的信息。为了简化操作,只要您的测试运行时可以输出测试结果文件,Jenkins 就可以记录和汇总这些测试结果。Jenkins 通常与 junit 步骤捆绑在一起,但如果您的测试运行结果无法输出 JUnit 样式的 ...
  • Maven

    Maven note Basic Kotlin pom.xml file (without Ktor) Add Ktor dependencies and configure build settings Choose your engine and configure it Final pom.xml (with Ktor) Configure...
  • 4.5. Configuration Parameters

    593 2020-12-09 《JUnit 5 User Guide》
    4.5. Configuration Parameters 4.5.1. Pattern Matching Syntax 4.5. Configuration Parameters In addition to instructing the platform which test classes and test engines to inclu...
  • 4. Running Tests

    441 2020-12-09 《JUnit 5 User Guide》
    4. Running Tests 4. Running Tests 4.1. IDE Support 4.2. Build Support 4.3. Console Launcher 4.4. Using JUnit 4 to run the JUnit Platform 4.5. Configuration Parameters 4.6...
  • 用户指南

    JUnit5用户指南 JUnit5用户指南 JUnit5官方user guide文档翻译,原英文文档地址为: http://junit.org/junit5/docs/current/user-guide/ 英文文档的github托管地址为: https://github.com/junit-team/junit5/tree/master/d...
  • 4.8 类型检测与类型转换

    892 2019-03-05 《Kotlin极简教程》
    4.8 类型检测与类型转换 4.8.1 is,!is运算符 类型自动转换 4.8.2 as运算符 4.8 类型检测与类型转换 4.8.1 is,!is运算符 is运算符可以检查对象是否与特定的类型兼容(“兼容”的意思是:此对象是该类型,或者派生于该类型)。 is运算符用来检查对象(变量)是否属于某数据类型(如Int、String、Bool...