Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 2... Línea 2...
2
Feature: Converting rubric score to grades
2
Feature: Converting rubric score to grades
3
  In order to use and refine rubrics to grade students
3
  In order to use and refine rubrics to grade students
4
  As a teacher
4
  As a teacher
5
  I need to be able to use different grade settings
5
  I need to be able to use different grade settings
Línea 6... Línea 6...
6
 
6
 
7
  Scenario Outline: Convert rubric scores to grades.
7
  Background:
8
    Given the following "users" exist:
8
    Given the following "users" exist:
9
      | username | firstname | lastname | email |
9
      | username | firstname | lastname | email |
10
      | teacher1 | Teacher | 1 | teacher1@example.com |
10
      | teacher1 | Teacher | 1 | teacher1@example.com |
11
      | student1 | Student | 1 | student1@example.com |
11
      | student1 | Student | 1 | student1@example.com |
Línea 17... Línea 17...
17
      | teacher1 | C1 | editingteacher |
17
      | teacher1 | C1 | editingteacher |
18
      | student1 | C1 | student |
18
      | student1 | C1 | student |
19
    And the following "scales" exist:
19
    And the following "scales" exist:
20
      | name         | scale                                     |
20
      | name         | scale                                     |
21
      | Test scale 1 | Disappointing, Good, Very good, Excellent |
21
      | Test scale 1 | Disappointing, Good, Very good, Excellent |
-
 
22
 
-
 
23
  Scenario Outline: Convert assignment rubric scores to grades.
22
    And the following "activities" exist:
24
    Given the following "activities" exist:
23
      | activity   | name              | intro | course | idnumber    | grade   | advancedgradingmethod_submissions |
25
    | activity   | name              | intro | course | idnumber    | grade   | advancedgradingmethod_submissions |
24
      | assign     | Test assignment 1 | Test  | C1     | assign1     | <grade> | rubric                            |
26
    | assign     | Test assignment 1 | Test  | C1     | assign1     | <grade> | rubric                            |
25
    When I log in as "teacher1"
27
    When I log in as "teacher1"
26
    And I change window size to "large"
28
    And I change window size to "large"
27
    And I am on "Course 1" course homepage with editing mode on
29
    And I am on "Course 1" course homepage with editing mode on
28
    And I go to "Test assignment 1" advanced grading definition page
30
    And I go to "Test assignment 1" advanced grading definition page
29
    And I set the following fields to these values:
31
    And I set the following fields to these values:
Línea 53... Línea 55...
53
      | 70           |              1 | 38.50          |
55
      | 70           |              1 | 38.50          |
54
      | Test scale 1 |              1 | Good           |
56
      | Test scale 1 |              1 | Good           |
55
      | 100          |                | 10.00          |
57
      | 100          |                | 10.00          |
56
      | 70           |                | 7.00           |
58
      | 70           |                | 7.00           |
57
      | Test scale 1 |                | Disappointing  |
59
      | Test scale 1 |                | Disappointing  |
-
 
60
 
-
 
61
  Scenario Outline: Convert forum rubric scores with a scale to grades.
-
 
62
    Given the following "activities" exist:
-
 
63
      | activity | name         | intro | course | idnumber | grade | advancedgradingmethod_submissions |
-
 
64
      | forum    | Test forum 1 | Test  | C1     | forum1   | 100   | rubric                            |
-
 
65
    And I change window size to "large"
-
 
66
    And I am on the "Test forum 1" "forum activity editing" page logged in as teacher1
-
 
67
    And I expand all fieldsets
-
 
68
    And I set the following fields to these values:
-
 
69
      | Whole forum grading > Type   | Scale                     |
-
 
70
      | Whole forum grading > Scale  | Default competence scale  |
-
 
71
      | Grading method               | Rubric                    |
-
 
72
    And I press "Save and display"
-
 
73
    And I go to "Test forum 1" advanced grading definition page
-
 
74
    # Defining a rubric.
-
 
75
    And I set the following fields to these values:
-
 
76
      | Name        | Forum 1 rubric          |
-
 
77
      | Description | Rubric test description |
-
 
78
    And I define the following rubric:
-
 
79
      | Criterion 1 | Level 11 | 1  | Level 12 | 20 | Level 13 | 40 | Level 14  | 50  |
-
 
80
      | Criterion 2 | Level 21 | 10 | Level 22 | 20 | Level 23 | 30 |           |     |
-
 
81
      | Criterion 3 | Level 31 | 5  | Level 32 | 20 |          |    |           |     |
-
 
82
    And I press "Save rubric and make it ready"
-
 
83
    When I am on the "Test forum 1" "forum activity" page logged in as teacher1
-
 
84
    And I press "Grade users"
-
 
85
    And I click on "<criterion1> points" "radio"
-
 
86
    And I click on "<criterion2> points" "radio"
-
 
87
    And I click on "<criterion3> points" "radio"
-
 
88
    And I press "Save"
-
 
89
    And I am on the "Course 1" "grades > Grader report > View" page
-
 
90
    Then I should see "<studentgrade>" in the "student1@example.com" "table_row"
-
 
91
 
-
 
92
    Examples:
-
 
93
      | studentgrade      | criterion1  | criterion2  | criterion3  |
-
 
94
      | Competent         | Level 14 50 | Level 23 30 | Level 32 20 |
-
 
95
      | Not yet competent | Level 11 1  | Level 21 10 | Level 31 5  |