/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk
1 by Gustav Hartvigsson
* Initial code - far from done
1
using VQDR.Expression;
2
3
void root_token_test () {
4
  Test.add_func ("/VQDR/Expression/TokenRoot/construction", () => {
5
    RootToken t = new RootToken ();
6
    assert (t != null);
7
  });
8
  
9
  Test.add_func ("/VQDR/Expression/TokenRoot/priority", () => {
10
     RootToken t = new RootToken ();
54 by Gustav Hartvigsson
More work torwards inperementing the parser.
11
     assert (t.priority == Token.Prio.ASSIGNMENT);
1 by Gustav Hartvigsson
* Initial code - far from done
12
  });
13
}