/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to tests/root_token.vala

  • Committer: Gustav Hartvigsson
  • Date: 2020-06-07 18:48:24 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20200607184824-jf14f7a1b1di2i2q
* Initial code - far from done

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 ();
 
11
     assert (t.priority == 0);
 
12
  });
 
13
}