Skip to content

Instantly share code, notes, and snippets.

@irrationnelle
Created June 29, 2016 11:38
Show Gist options
  • Save irrationnelle/e98b170a6c55a8c9444d89a642a841ac to your computer and use it in GitHub Desktop.
Save irrationnelle/e98b170a6c55a8c9444d89a642a841ac to your computer and use it in GitHub Desktop.
exercise for unit test with java
package com.calculator;
public class Calculator {
public int sum(int num1, int num2) {
return num1 + num2 ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment