This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <settings> | |
| <profiles> | |
| <profile> | |
| <id>jboss-staging-repository-group</id> | |
| <repositories> | |
| <repository> | |
| <id>jboss-staging-repository-group</id> | |
| <name>JBoss Staging Repository Group</name> | |
| <url>https://repository.jboss.org/nexus/content/groups/staging</url> | |
| <layout>default</layout> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [INFO] org.jboss.aerogear.test:spacelift-jboss-manager:jar:0.3.0-SNAPSHOT | |
| [INFO] +- org.arquillian.spacelift:arquillian-spacelift:jar:1.0.0.Alpha2:compile | |
| [INFO] | +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.1.4.Final:compile | |
| [INFO] | | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.1.4.Final:compile | |
| [INFO] | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.1.4.Final:compile | |
| [INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-5:compile | |
| [INFO] | +- org.arquillian.spacelift:arquillian-spacelift-api:jar:1.0.0.Alpha2:compile | |
| [INFO] | +- org.arquillian.spacelift:arquillian-spacelift-spi:jar:1.0.0.Alpha2:compile | |
| [INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.1.0:compile | |
| [INFO] | | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.1.0:compile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| We are proud to announce the first final release of Arquillian Droidium component. There were lot of alpha releases where we were polishing stability and API for developers. | |
| Arquillian Droidium is in its simplicity the container for Android, both Android emulators and physical devices. Arquillian Droidium makes testing of your Android application, when it comes to functional testing, a breeze. | |
| The biggest strength of Arquillian Droidium lays in its simplicity. Droidium is very smart in hiding unnecessary boiler plate code you have to set up every time. Droidium tests are very clean and easy to read and maintain and you can purely focus on your testing logic. | |
| Arquillian Droidium consists of two core extensions. The first one implements Android container as such, deployment of APKs to your device, starting, stopping and connecting to your Android devices and so one. The second core extension, Droidium Native extension, brings functional testing to your mobile environment. (1) | |
| Functional testing of Android d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # run this with ansible-playbook -i ansible_hosts bootstrap.yml -k -c paramiko | |
| - hosts: jails_host | |
| gather_facts: false | |
| remote_user: root | |
| tasks: | |
| - name: install pkgng | |
| raw: "pkg_info | grep -v 'pkg-' > /dev/null ; if $? pkg_add -r pkg; rehash ; pkg2ng; echo 'WITH_PKGNG=yes' >> /etc/make.conf; echo 'packagesite: http://pkgbeta.freebsd.org/freebsd%3A9%3Ax86%3A64/latest' >> /usr/local/etc/pkg.conf; pkg update ; pkg upgrade -y" | |
| - name: install python27 | |
| raw: "pkg install -y python27" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package docker.manager; | |
| import org.arquillian.cube.spi.Cube; | |
| import org.arquillian.cube.spi.CubeRegistry; | |
| import org.arquillian.cube.spi.event.CreateCube; | |
| import org.arquillian.cube.spi.event.DestroyCube; | |
| import org.arquillian.cube.spi.event.StartCube; | |
| import org.arquillian.cube.spi.event.StopCube; | |
| import org.jboss.arquillian.core.impl.loadable.LoadableExtensionLoader; | |
| import org.jboss.arquillian.core.spi.Manager; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Added additional null checks when closing the ResultSet and Statements. | |
| * | |
| * Thanks to pihug12 and Grzegorz Oledzki at stackoverflow.com | |
| * http://stackoverflow.com/questions/5332149/jdbc-scriptrunner-java-lang-nullpointerexception?tab=active#tab-top | |
| */ | |
| /* | |
| * Modified: Use logWriter in print(Object), JavaDoc comments, correct Typo. | |
| */ | |
| /* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.miklosovic.qa; | |
| import static net.miklosovic.qa.Annotations.Architecture.PPC; | |
| import static net.miklosovic.qa.Annotations.JavaVendor.IBM; | |
| import static net.miklosovic.qa.Annotations.JavaVersion.VERSION_1_8; | |
| import static net.miklosovic.qa.Annotations.OperatingSystem.MAC; | |
| import org.apache.commons.lang3.SystemUtils; | |
| import org.junit.Test; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.miklosovic.qa; | |
| import static net.miklosovic.qa.Annotations.Architecture.PPC; | |
| import static net.miklosovic.qa.Annotations.JavaVendor.IBM; | |
| import static net.miklosovic.qa.Annotations.JavaVersion.VERSION_1_8; | |
| import net.miklosovic.qa.Annotations.OperatingSystem.Mac; | |
| import org.apache.commons.lang3.SystemUtils; | |
| import org.junit.Test; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.miklosovic.qa; | |
| import static net.miklosovic.qa.Annotations.Architecture.PPC; | |
| import static net.miklosovic.qa.Annotations.JavaVendor.IBM; | |
| import static net.miklosovic.qa.Annotations.JavaVersion.VERSION_1_8; | |
| import net.miklosovic.qa.Annotations.OperatingSystem.Mac; | |
| import org.apache.commons.lang3.SystemUtils; | |
| import org.junit.Test; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.miklosovic.qa; | |
| import static net.miklosovic.qa.Annotations.Architecture.PPC; | |
| import static net.miklosovic.qa.Annotations.JavaVendor.IBM; | |
| import static net.miklosovic.qa.Annotations.JavaVersion.VERSION_1_8; | |
| import net.miklosovic.qa.Annotations.OperatingSystem.Mac; | |
| import org.apache.commons.lang3.SystemUtils; | |
| import org.junit.Test; |