public void It_Should_Convert_To_A_Long_Using_Away_From_Zero(decimal input, long expected) { // Act var result = ValueCaster.ConvertToLong(input); // Assert Assert.Equal(expected, result); }