public void CannotSetUsername()
        {
            var mssql = new MsSqlTestcontainerConfiguration();

            Assert.Throws <NotImplementedException>(() => mssql.Username = string.Empty);
        }
            public void MssqlSetDatabase()
            {
                DatabaseConfiguration mssql = new MsSqlTestcontainerConfiguration();

                Assert.Throws <NotImplementedException>(() => mssql.Database = string.Empty);
            }