Skip to content

Instantly share code, notes, and snippets.

View kclejeune's full-sized avatar

Kennan LeJeune kclejeune

View GitHub Profile
@kclejeune
kclejeune / boolArrayListJUnit.java
Created February 15, 2018 02:47
EECS 233 JUnit equivalent of TestNG unit tests
import org.junit.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
public class boolArrayListJUnit
{
/*
* Set up a few Objects for use in test fixture
*/
@kclejeune
kclejeune / boolArrayListNGTest.java
Last active February 13, 2018 03:07
Modified testing files for Kolacinski EECS 233
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
import org.testng.annotations.*;
import static org.testng.Assert.*;