github.com/cycloss/advent-of-code@v0.0.0-20221210145555-15039b95faa6/2022/test/aoc2022_test.dart (about)

     1  import 'package:2022/day1.dart';
     2  import 'package:2022/day2.dart';
     3  import 'package:2022/day3.dart';
     4  import 'package:2022/day4.dart';
     5  import 'package:2022/day5.dart';
     6  import 'package:2022/day6.dart';
     7  import 'package:2022/day7.dart';
     8  import 'package:2022/day8.dart';
     9  import 'package:2022/day9.dart';
    10  import 'package:test/test.dart';
    11  
    12  void main() {
    13    test('day1', () => day1());
    14    test('day2', () => day2());
    15    test('day3', () => day3());
    16    test('day4', () => day4());
    17    test('day5', () => day5());
    18    test('day6', () => day6());
    19    test('day7', () => day7());
    20    test('day8', () => day8());
    21    test('day9', () => day9());
    22  }