DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

The Latest Testing, Deployment, and Maintenance Topics

article thumbnail
Replacing Text in NGINX with sub_filter
Weird situations arise sometimes with web applications. Come have a look at how you might overcome these situations when you need to replace text like IP addresses or files with NGINX!
April 28, 2016
by James Carr
· 26,270 Views · 3 Likes
article thumbnail
Service Discovery for NGINX Plus with ZooKeeper
Learn how to use services registered with Apache Zookeeper to issue API calls correctly.
April 28, 2016
by Patrick Nommensen
· 5,848 Views · 4 Likes
article thumbnail
Sharing Test Classes Between Multiple Modules in a Multi-module Maven Project
Using Maven to effectively test software when test classes are not already packaged by Maven.
April 28, 2016
by Dave Turner
· 56,276 Views · 6 Likes
article thumbnail
Testing Java EE (or Why Integration Tests Are Overrated)
Testing that goes beyond just unit testing and integration testing. Why we should be doing full system testing.
April 27, 2016
by Sebastian Daschner
· 26,068 Views · 7 Likes
article thumbnail
Mocking Method with Wildcard Generic Return Type
[Ivan Zerin provides a primer on mocking methods that contain generic return types.] There are several cases where construction when().thenReturn is not suitable during Unit tests. One of then generic return type. I have faced such issue, let's take a look. There is a method in interface declaration: public interface FooInterface { public Iterable getList(); ... } Implementation looks like this: public class Foo implements FooInterface { public List getList() { ... } ... } At first mocking of such method should not be something unusual: public class UnitTest { @Mock private FooInterface mockFoo; @Test public void someUnitTest() { ... List testList = generateTestList(); when(mockFoo.getList()) .thenReturn(testList); } } But this code won't compile with error: Cannot resolve method 'thenReturn(List). Seems to be some mistake, cause returned type are correct from the interface point of view. This error happening cause compiler can not gurantee that returned type of method getList() will be List. Actually return type of method getList() in this case is Iterable and this means "Return some Iterable object with any objects that extends SomeClass". Let's rename this type as 'X'. So when(mockFoo.getList()) will create object OngoingStubbing> and it has method thenReturn(Iterable). Compiler can not tell what type X before runtime and cannot perform safe cast from List to Iterable (we perfrom actuall call of method thenReturn(List)). Sounds a little tricky but let's assume that SomeClass is standard Java class Number. Then classes Integer and Double are both fulfill the criteria of List. Let's say that as return type of mock we will use List, in this case, compiler should be ready that actual work with code during runtime will be performed with List too, but it is clearly that cast from Double to Integer will be incorrect (try to cast double value 12.6 to int). You could argue that in the case of mockito compiler won't need to bother about the casting of returned type because call of original method would not produce anything, but it is known by mockito. From compiler point of view, it is only Java code, that should be checked for safety and correctness before compiling. Ok, so how we should deal with such cases in mockito? Use doReturn() method: doReturn(testList).when(mockFoo).getList(); Such expression is not type safe, so it were designed for exceprional cases, so use it only when you cannot use standart when().thenReturn(), which is the type-safe, elegant and more readable syntax.
April 27, 2016
by Ivan Zerin
· 44,438 Views · 4 Likes
article thumbnail
Logback Configuration: Using Groovy
Logback is one of the most popular logging frameworks for Java, but did you know you could configure it using Groovy? This guide walks you through the whole process.
April 27, 2016
by John Thompson
· 26,390 Views · 7 Likes
article thumbnail
How to Verify Equality Without Equals Method
When testing it is often quite complicated to compare object with complex fields. By using the Unitils library in Java, this all becomes quite simple and elegant.
April 27, 2016
by Lubos Krnac
· 16,601 Views · 5 Likes
article thumbnail
Sorted Pagination in Cassandra
We have a look at how to implement sorted pagination with the popular NoSQL solution Cassandra.
April 26, 2016
by Felipe Fernández
· 13,744 Views · 5 Likes
article thumbnail
Quartz Scheduler Configuration For Web Applications
In this article, we will discuss how to configure "Quartz Scheduler" with a web application. Read on for more info.
April 25, 2016
by Siva Prasad Rao Janapati
· 25,261 Views · 3 Likes
article thumbnail
Why Leading Companies Dark Launch
What dark launches are and how they improve the future releases and stability of application infrastructure.
April 22, 2016
by Justin Baker
· 10,240 Views · 6 Likes
article thumbnail
The State of Jenkins — 2015 Community Survey
Results from the 2015 Jenkins Community Survey, suggesting that DevOps adoption has grown even more.
April 22, 2016
by Brian Dawson
· 5,877 Views · 3 Likes
article thumbnail
How to Authenticate on Android Using Social Logins
In this article we will go through four popular social login providers and learn how to implement them on Android. Read on!
April 21, 2016
by Sebastián Peyrott
· 21,792 Views · 5 Likes
article thumbnail
JavaScript MVVM — You’re (Probably) Doing it Wrong
If you are using one of the many frameworks that say they are using JavaScript MVVM, you might not be using it the way it should be used. In this article, Dave Bush defines MVVM, analyzes its advantages, and provides some MVVM best practices to follow.
April 21, 2016
by Dave Bush
· 22,911 Views · 10 Likes
article thumbnail
Building Blocks for Highly Available Systems on AWS
An upcoming article from DZone's Guide to Building and Deploying Applications on the Cloud, coming out next week!
April 21, 2016
by Andreas Wittig
· 8,334 Views · 5 Likes
article thumbnail
Deploy to WildFly and Docker From IntelliJ Using Management API
When you are new to both Docker and IntelliJ how do you deploy your Java EE applications? Steve Favez shows you how.
April 21, 2016
by Steve Favez
· 27,441 Views · 11 Likes
article thumbnail
Logback Configuration: Using XML
Logback is a logging library from the creator of JUnit. In this series continuation, Spring guru John Thompson shows how to configure it using XML.
April 20, 2016
by John Thompson
· 92,352 Views · 16 Likes
article thumbnail
Testing Spark Code
An introduction to testing your Apache Spark code with Scala.
April 20, 2016
by Tim Spann DZone Core CORE
· 31,977 Views · 7 Likes
article thumbnail
Using Stubs for the AWS SDK for Ruby
Code that makes use of external dependencies can be difficult to test. If you are using AWS, then you have no doubt run into issues in testing your code. This article takes you through how to get around this little hurdle by using AWS Stubs if you are using Ruby.
April 18, 2016
by Jeff Dugas
· 6,410 Views · 2 Likes
article thumbnail
Monitoring Docker Containers — Docker Stats, cAdvisor, Universal Control Plane
There are multiple ways to monitor Docker containers. This blog post will explain a few simple and easy to use options. Read on for further explanation and analysis.
April 15, 2016
by Arun Gupta
· 28,334 Views · 7 Likes
article thumbnail
Properly Shutting Down An ExecutorService
This tutorial will teach you that you don't need to pilot an A-Wing to shut down these ExecutorServices.
Updated April 14, 2016
by T Tak
· 75,372 Views · 11 Likes
  • Previous
  • ...
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • ...
  • Next
  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook
×