/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/common_test_runner.vala

  • Committer: Gustav Hartvigsson
  • Date: 2021-05-24 15:49:06 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210524154906-z65s7fxnt3zfb8qn
* FastNumber:
  * added ability to get the decimal.
  * added ability to set the decimal.
  * Explicitly define the raw number.
  * Made operatiors public

* OperatorToken:
  * uncommented the operators in init_token ()

* [...]OperatorToken:
  * constructers: protected -> public

* Tests:
  * Added test for FastNumber (need more cases)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
  Test.init (ref args);
5
5
  
6
6
  gobject_to_string_test ();
7
 
  
 
7
  fast_number_test ();
8
8
  
9
9
  return Test.run ();
10
10
}