class_test 1.0.1 copy "class_test: ^1.0.1" to clipboard
class_test: ^1.0.1 copied to clipboard

discontinued

Allows structuring flutter tests using classes instead of functions to simplify polymorphism testing.

class_test #

Allows structuring flutter tests using classes instead of functions to simplify polymorphism testing.

This library is just a simple OO wrapper on top of the original flutter test package.

Getting Started #

Lets imagine you need to test following classes:

abstract class Animal {
  String get kingdom;
  String get order;
  String get family;
}

class Dog implements Animal {
  String get kingdom => 'Animalia';
  String get order => 'Carnivora';
  String get family => 'Canidae';
}

class Cat implements Animal {
  String get kingdom => 'Animalia';
  String get order => 'Carnivora';
  String get family => 'Felidae';
}

Normally you would have to write identical tests both for a Dog and a Cat. Doing this with low code duplication using flutter's default test package might become tricky pretty quickly due to the usage of functions instead of classes.

But worry not: let's define our tests as classes.

First, lets create a test that would work both for a Dog and a Cat:

abstract class AnimalTest extends Test {
  Animal animal;
  
  AnimalTest(this.animal, String name): super(name);
  
  @override
  void declareTests() {
    declareTest('belongs to Animalia kingdom', () {
      expect(animal.kingdom, 'Animalia');
    });
    declareTest('belongs to Carnivora order', () {
      expect(animal.order, 'Carnivora');
    });
  }
}

Now, lets create tests for a Dog and a Cat with parts of those tests that are actually different:

class DogTest extends AnimalTest {
  DogTest(): super(Dog(), 'Dog');
  
  @override
  void declareTests() {
    super.declareTests();
    declareTest('belongs to Canidae family', () {
      expect(animal.family, 'Canidae');
    });
  }
}

class CatTest extends AnimalTest {
  CatTest(): super(Cat(), 'Cat');
  
  @override
  void declareTests() {
    super.declareTests();
    declareTest('belongs to Felidae family', () {
      expect(animal.family, 'Felidae');
    });
  }
}

In order for this two tests to run, lets include them in the main function:

void main() {
  DogTest().run();
  CatTest().run();
}

Setup and teardown #

To specify setUp* and tearDown* method bodies, you can simply override corresponding methods of the Test class.

0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Allows structuring flutter tests using classes instead of functions to simplify polymorphism testing.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter, flutter_test

More

Packages that depend on class_test