File: TestReader.cs

package info (click to toggle)
liblas 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,888 kB
  • ctags: 4,614
  • sloc: cpp: 31,630; xml: 4,195; python: 2,928; ansic: 2,439; cs: 2,411; sh: 143; makefile: 37
file content (31 lines) | stat: -rwxr-xr-x 661 bytes parent folder | download | duplicates (3)
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Liblas;
using System.Diagnostics;

namespace swig_test
{
   static internal class TestReader
   {
      static public void Test_A(Reader reader)
      {
         Header h = reader.GetHeader();
         Debug.Assert(!h.Compressed());
      }

      static public void Test_B(Reader reader)
      {
         Header h = reader.GetHeader();
         Debug.Assert(h.Compressed());
      }

      static public void Test_T(Reader reader)
      {
         Header h = reader.GetHeader();
         Debug.Assert(h.Compressed());
      }
   }
}