コード例 #1
0
ファイル: EnvReader.Tests.cs プロジェクト: Gounlaf/dotenv.net
        public void ShouldReadDecimalValues()
        {
            DotEnv.Config(true, ValueTypesEnvFileName, Encoding.UTF8);
            var envReader = new EnvReader();

            envReader.GetDecimalValue("DECIMAL")
            .Should()
            .Be(34.56m);

            envReader.TryGetDecimalValue("NON_EXISTENT_KEY", out _)
            .Should()
            .BeFalse();

            Action action = () => envReader.GetDecimalValue("NON_EXISTENT_KEY");

            action.Should()
            .Throw <Exception>();
        }