排序
Generating mock data with Mimesis: Part II
Generating mock data with Mimesis: Part II, We have already published how to generate mock data with the help of a Python library — Mimesis. The article you are reading now is...
Modern Java Development is Fast
Modern Java Development is Fast,Originally posted on return.co.de Java Development is fast - and fun. Believe it or not. I hear a lot of Java bashing in podcasts, mostly by develop...
Generating mock data using Mimesis: Part I
Generating mock data using Mimesis: Part I, The ability to generate mock but valid data comes in handy in app development, where you need to work with databases. Filling in the dat...
Testing against unmanaged models in Django
Testing against unmanaged models in Django, The problem My Django application is supposed to read the tables of an already existing database. So the models of the database are gene...
Integration testing on existing routes with Apache Camel (and Spring and DBUnit)
Integration testing on existing routes with Apache Camel (and Spring and DBUnit), Subject and Target Audience This article is here to show how to do integration tests with Apache C...
How to test input processing in Python 3
How to test input processing in Python 3,Testing functions that use input() is not a straightforward task. This tutorial shows how to do that. The problem Contest programming probl...
Nikita Barchugov a.k.a. Rude boi
Nikita Barchugov a.k.a. Rude boi, 原文链接:Nikita Barchugov a.k.a. Rude boi
Comparing Spock and JUnit
Comparing Spock and JUnit,JUnit is considered the standard framework to test Java applications. I don't think anybody will challenge its position in the short term. In addition JUn...
Python unit testing with Mock – Part Two
Python unit testing with Mock - Part Two, How do you write tests? Python has many frameworks for writing tests, but ultimately they come down to collecting functions whose names be...
Python unit testing with Mock – Part One
Python unit testing with Mock - Part One, What is this article? Months ago, I was asked to give a talk to the Puget Sound Python Meetup group. This is the article-rendering of that...
How to Set Up Cucumber Tests for Java
How to Set Up Cucumber Tests for Java,Java cucumber tests have 3 parts. The feature file The step definitions (the 'glue' file(s)) The junit test file The feature file is where the...