[Mono-dev] Are this bugs / features going to be fixed / released in the next builds?

marcos b marcosb at internet.com.uy
Wed Sep 10 10:47:03 EDT 2008


All of this tests succeed in Microsoft .net Environment, but none does in
mono.

        [Test]
        public void TypedDataSetsWithBinaryRemotingFormat()
        {
            DataSet1 ds = new DataSet1();  //Any dataset with a simple, one
column datatable
            ds.RemotingFormat = SerializationFormat.Binary;

            BinaryFormatter f = new BinaryFormatter();
            MemoryStream ms = new MemoryStream();
            f.Serialize(ms, ds);
        }

        [Test]
        public void RemotingCustomErrorsModeConfiguration()
        {
            RemotingConfiguration.CustomErrorsMode = CustomErrorsModes.Off;
        }

        [Test]
        public void NullableConverterConstructor()
        {
            Type t = typeof(int?);
            NullableConverter nullableConverter;
            nullableConverter = new NullableConverter(t);
        }

        [Test]
        public void AdoAdapterUpdate()
        {
            using (SqlConnection cn = GetConnection())
            {
                SqlDataAdapter da = new SqlDataAdapter("Select * from
PackageLink", cn);

                DataTable dt = new DataTable();
                da.Fill(dt);

                DbCommandBuilder builder = new SqlCommandBuilder(da);

                dt.Rows[0]["Description"] = "changed";
                da.Update(dt);
            }
        }

Thanks in advance for any comments.
-- 
View this message in context: http://www.nabble.com/Are-this-bugs---features-going-to-be-fixed---released-in-the-next-builds--tp19414689p19414689.html
Sent from the Mono - Dev mailing list archive at Nabble.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/mono-devel-list/attachments/20080910/43e036d3/attachment.html 


More information about the Mono-devel-list mailing list