blob: 1cb94228e0f974dce84cad5796a03532a357b00d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// ============================================================================================
// .NET API for EJDB database library http://ejdb.org
// Copyright (C) 2012-2013 Softmotions Ltd <info@softmotions.com>
//
// This file is part of EJDB.
// EJDB is free software; you can redistribute it and/or modify it under the terms of
// the GNU Lesser General Public License as published by the Free Software Foundation; either
// version 2.1 of the License or any later version. EJDB is distributed in the hope
// that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
// License for more details.
// You should have received a copy of the GNU Lesser General Public License along with EJDB;
// if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
// Boston, MA 02111-1307 USA.
// ============================================================================================
using System;
using NUnit.Framework;
using Ejdb.SON;
using System.IO;
namespace Ejdb.Tests {
[TestFixture]
public class TestBSON {
[Test]
public void TestSerializeEmpty() {
MemoryStream ms = new MemoryStream();
BSONDocument doc = new BSONDocument();
doc.Serialize(ms);
string hv = TestUtils.ToHexString(ms.ToArray());
ms.Close();
Assert.AreEqual("05-00-00-00-00", hv);
}
[Test]
public void TestSerializeSimple() {
MemoryStream ms = new MemoryStream();
BSONDocument doc = new BSONDocument();
doc.Serialize(ms);
string hv = TestUtils.ToHexString(ms.ToArray());
ms.Close();
Console.WriteLine("HV=" + hv);
}
}
}
|