public void MethodGetNodS_EmptyArray_ArgumentException() { Assert.Throws <ArgumentException>(() => NodSearcher.GetNodStein(out _)); }
public int MethodGetNodS_ArrayOfNumbers_ReturnCorrectNod(int num1, int num2, int num3) => NodSearcher.GetNodStein(out _, num1, num2, num3);
public void MethodGetNodS_Null_ArgumentNullException() { Assert.Throws <ArgumentNullException>(() => NodSearcher.GetNodStein(out _, null)); }
public int MethodGetNodE_ArrayOfNumbers_ReturnCorrectNod(int num1, int num2) => NodSearcher.GetNodEvkl(out _, num1, num2);