小编Man*_*dyW的帖子

无法让Jacoco使用离线工具与Powermockito合作

鉴于Jacoco在"动态"工具时不能很好地与PowerMockito配合使用,我一直在尝试配置离线工具,希望这能为我提供适用于使用PowerMockito的类的单元测试覆盖率.

我已经将我的pom设置如下,但我的测试课程仍然保持0%的覆盖率.任何帮助都非常感激,因为它让我慢慢疯狂!

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>mandy</groupId>
    <artifactId>jacoco-test</artifactId>
    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>jacoco-test Maven Webapp</name>
    <url>http://maven.apache.org</url>
    <properties>
        <powermock.version>1.5.4</powermock.version>
        <jacoco.version>0.7.1.201405082137</jacoco.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.jacoco</groupId>
            <artifactId>org.jacoco.agent</artifactId>
            <classifier>runtime</classifier>
            <version>${jacoco.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <version>${powermock.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-mockito</artifactId>
            <version>${powermock.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>

    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>${jacoco.version}</version>
                <executions>
                    <execution>
                        <id>instrument</id>
                        <phase>process-classes</phase>
                        <goals>
                            <goal>instrument</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>restore-report</id>
                        <phase>prepare-package</phase>
                        <goals>
                            <goal>restore-instrumented-classes</goal>
                            <goal>report</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin> …
Run Code Online (Sandbox Code Playgroud)

java powermock jacoco

33
推荐指数
2
解决办法
3万
查看次数

有没有办法从命令行关闭iOS模拟器?

有没有办法通过命令行脚本退出iOS模拟器?

背景:

我正在建立一个Continous Integration环境,以使iOS构建能够自动编译和测试.作为其中的一部分,我使用Apple中的Apple UI自动化工具运行脚本.

我已经设法通过从命令行运行Instruments来自动执行iOS模拟器上的脚本但现在我现在想要自动退出模拟器.

我尝试过类似这篇文章的Apple Script: 如何从命令行重置iOS模拟器?但得到错误"禁用辅助设备访问".希望有一种更简单的方法吗?

ios ios-simulator ios5

13
推荐指数
3
解决办法
1万
查看次数

如何将我的iOS UIAutomation测试的输出转换为Jenkins的JUnit样式输出?

我正在使用UIAutomation脚本来测试我的iOS应用程序.我已经设法从命令行运行脚本,但现在我需要以Jenkins可以理解的格式转换输出(通过/失败),理想情况是JUnit样式.

在我尝试写一个脚本之前,有没有人写过任何脚本?

非常感谢

ios jenkins ios-ui-automation

9
推荐指数
1
解决办法
4091
查看次数

如何在Jackson生成的JSON模式中包含Bean Validation约束

我正在使用Jersey 1.2(仍然使用JDK 1.5)并开发了REST预订Web资源和相关的预订POJO.

我使用Bean Validation来限制字段的大小/类型,例如

@NotNull
@Size(message="invalid size",min=3,max=20)
@Pattern(message="invalid pattern",regexp = "^[A-Za-z]*")
@JsonProperty(value = "forename")
private String forename;
Run Code Online (Sandbox Code Playgroud)

并使用Jackson ObjectMapper.generateJsonSchema类生成JSON模式但是这忽略了所有验证注释,所以我得到:

"forename" : {
  "type" : "string"
}
Run Code Online (Sandbox Code Playgroud)

有没有办法将限制信息包含在生成的模式中?

非常感谢

json jackson bean-validation

6
推荐指数
3
解决办法
9851
查看次数

UIAPickerWheel.selectValue()不适用于UIDatePicker中的文本值

我创建了一个简单的项目,使用的故事板只包含一个模式=日期的UIDatePicker(因此日期显示为"11月""28""2011").

在仪器UI自动化中我试图设置各个日期选择器轮的值.

我可以成功使用selectValue()方法来设置包含数值的轮子,但无法设置月份的文本值,例如"十一月".

这有效..

target.frontMostApp().mainWindow().pickers()[0].wheels()[1].selectValue(12);
Run Code Online (Sandbox Code Playgroud)

但这不..

target.frontMostApp().mainWindow().pickers()[0].wheels()[0].selectValue("November");
Run Code Online (Sandbox Code Playgroud)

我收到错误: Script threw an uncaught JavaScript error: - selectValue is not supported on a picker with undefined values

我做了一个UIATarget.localTarget().frontMostApp().logElementTree(),可以看到价值是正确的:

UIAPickerWheel:value:November rect:{{1,142},{146,216}}

请允许任何人提出我可能做错的建议,非常感谢.

ios ios-ui-automation

5
推荐指数
1
解决办法
4031
查看次数

Maven执行者和wilcard依赖性排除

我正在使用Maven enforcer插件来检查依赖性收敛.鉴于这个(人为的)例子:

project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>warren</groupId>
  <artifactId>warren</artifactId>
  <packaging>war</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>warren Maven Webapp</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.sf.jtidy</groupId>
      <artifactId>jtidy</artifactId>
      <version>r938</version>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.plugin-tools</groupId>
      <artifactId>maven-plugin-tools-api</artifactId>
      <version>2.5.1</version>
    </dependency>
  </dependencies>
  <build>
    <finalName>warren</finalName>

    <!-- The Maven Enforcer -->
    <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-enforcer-plugin</artifactId>
      <version>1.4</version>
      <dependencies>
        <dependency>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>extra-enforcer-rules</artifactId>
          <version>1.0-beta-2</version>
        </dependency>
      </dependencies>
      <executions>
        <!-- ******************************************************* -->
        <!-- Ensure that certain really important things are checked -->
        <!-- and fail the build if any of these are violated         -->
        <!-- …
Run Code Online (Sandbox Code Playgroud)

maven maven-enforcer-plugin

5
推荐指数
1
解决办法
2341
查看次数

是否适合使用AtomicReference.compareAndSet来设置对数据库调用结果的引用?

我正在实现一个简单的缓存,缓存存储为AtomicReference.

private AtomicReference<Map<String, String>> cacheData;
Run Code Online (Sandbox Code Playgroud)

应该从数据库表中填充(延迟)缓存对象.

我提供了一种方法来将缓存数据返回给调用者,但如果数据为空(即未加载),则代码需要从数据库加载数据.为避免同步我想到使用compareAndSet()方法:

public Object getCacheData() {
  cacheData.compareAndSet(null, getDataFromDatabase()); // atomic reload only if data not set!
  return Collections.unmodifiableMap(cacheData.get());
}
Run Code Online (Sandbox Code Playgroud)

以这种方式使用compareAndSet是否可以.将数据库调用作为原子动作的一部分?是否比同步方法更好/更差?

非常感谢任何建议..

java java.util.concurrent compare-and-swap

4
推荐指数
1
解决办法
4340
查看次数

Clang scan-build不适用于Xcode 4.2 LLVM 3.0构建配置

我已经安装了Xcode 4.2最终版本,可以为iOS 5编译.

我们使用Jenkins进行CI并从llvm.org项目页面运行Clang scan-build.(版本258)项目配置为使用LLVM 3.0(自Xcode 4.2以来是默认的).现在每次我尝试运行scan-build时都会出现以下错误:

CompileC build/Cortado.build/Debug-iphonesimulator/Cortado.build/Objects-normal/i386/TPContentDetailViewController_iPad.o Classes/iPad/TPContentDetailViewController_iPad.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd "/Volumes/Sources/Starteam - Main View/Workplace/Cortado"
    setenv LANG en_US.US-ASCII
    setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/Applications/android-sdk-mac_x86/android-ndk-r6b:/Applications/android-sdk-mac_x86/platform-tools:/Applications/android-sdk-mac_x86/tools:/Volumes/Sources/Starteam - Main View/Tools:/Volumes/Sources/Tools:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin"
    /Users/thwee/Downloads/checker-258/libexec/ccc-analyzer -x objective-c -arch i386 -fmessage-length=0 -fdiagnostics-print-source-range-info -fdiagnostics-show-category=id -fdiagnostics-parseable-fixits -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wparentheses -Wswitch -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-shorten-64-to-32 -DDEBUG -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk -fexceptions -fasm-blocks -fprofile-arcs -ftest-coverage -mmacosx-version-min=10.6 -gdwarf-2 -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -D__IPHONE_OS_VERSION_MIN_REQUIRED=40100 -iquote "/Volumes/Sources/Starteam - Main View/Workplace/Cortado/build/Cortado.build/Debug-iphonesimulator/Cortado.build/Cortado-generated-files.hmap" "-I/Volumes/Sources/Starteam - Main View/Workplace/Cortado/build/Cortado.build/Debug-iphonesimulator/Cortado.build/Cortado-own-target-headers.hmap" "-I/Volumes/Sources/Starteam - Main View/Workplace/Cortado/build/Cortado.build/Debug-iphonesimulator/Cortado.build/Cortado-all-target-headers.hmap" -iquote "/Volumes/Sources/Starteam - Main …
Run Code Online (Sandbox Code Playgroud)

xcode llvm clang clang-static-analyzer

2
推荐指数
1
解决办法
3477
查看次数