public void FindSmallestInt()
        {
            //Arrange
            Lowest lowest = new Lowest();

            //Assert
            Assert.AreEqual(11, lowest.FindLowestInt(new int[] { 34, 190, 3890, 11, 23, 76 }));
        }