// development practice: TDD (test driven development)
//   - write method declarations and specs with skeleton implementations
//   - THEN write tests
//   - THEN write implementation
//
// Tests will fail initially, but you are done when all of your tests pass.
//

import static org.junit.Assert.*;

import org.junit.Test;

public class VowelUtilityTester {

	@Test
	public void test() {
		// VowelUtility v = new VowelUtility();

		assertEquals(2, VowelUtility.countVowels("hello"));
		assertEquals(1, VowelUtility.countVowels("green"));
		assertEquals(0, VowelUtility.countVowels("syzygy"));
	}
	

}
