This is a SCRIPT-8 cassette.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Classfile 17-JupiterTestDescriptor.class | |
Last modified Apr 28, 2024; size 16084 bytes | |
SHA-256 checksum 464709a464e64cce32149ca46bd5870c09179d47c818c98981621369216f0ad1 | |
Compiled from "JupiterTestDescriptor.java" | |
public abstract class org.junit.jupiter.engine.descriptor.JupiterTestDescriptor extends org.junit.platform.engine.support.descriptor.AbstractTestDescriptor implements org.junit.platform.engine.support.hierarchical.Node<org.junit.jupiter.engine.execution.JupiterEngineExecutionContext> | |
minor version: 0 | |
major version: 52 | |
flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT | |
this_class: #8 // org/junit/jupiter/engine/descriptor/JupiterTestDescriptor | |
super_class: #14 // org/junit/platform/engine/support/descriptor/AbstractTestDescriptor |
- TreeWalker that generates execution plan (ExecutionMode and ResourceLock per Node) in HierarchicalTestExecutor
- 1st pass: ExecutionMode and ResourceLock on Node
- 2nd pass: Pull up ResourceLocks to first Node with ResourceLock, remove ResourceLocks from children, force ExecutionMode to Same_Thread
- Optional optimization: Only pull up locks when ResourceLock order in descendants is not compatible
- 2nd pass (?): Inherit ExecutionMode to children
- Thread-safe listeners
- Decide on config parameters (factor?)
- Capture stdout/stderr
- Optimize case when no parallel execution takes place to capture all stdout/stderr, not just from same thread?
- Release ota4j and change
ota4jVersion
ingradle.properties
accordingly, if necessary - Change
version
,platformVersion
, andvintageVersion
ingradle.properties
to the versions about to be released - Change release date in User Guide
- Change artifact versions in README.MD
- Commit with message "Release ${VERSION}"
- Execute
./gradlew clean uploadArchives
- Close staging repo on Nexus
- Release staging repo on Nexus
- Tag current commit (e.g.
r5.0.0-M1
) - Update junit5-samples to use released version and create tag (e.g.
r5.0.0-M1
)
New Group ID for Maven: org.junit
- junit-assertion-api: Can be used by assertion frameworks like Hamcrest, AssertJ, or Truth.
org.junit.ComparisonFailure
org.junit.AssumptionViolatedException
(withoutMatcher
dependency)
- junit-core (depends on junit-assertion-api)
- No Hamcrest dependency (except for tests)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update tbl t1 | |
set t1.reihenfolge = (with t3 as | |
(select t2.id, row_number() over (partition by modell order by bo) nr | |
from tbl t2) | |
select nr from t3 | |
where t3.id = t1.id) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Theme Name: Twenty Twelve Child by PabstWP | |
Theme URI: http://pabstwp.de/ | |
Author: Matthias Pabst | |
Author URI: http://pabstwp.de/ | |
Description: Child Theme for WordPress Standard Theme Twenty Twelve with additional menus and footer widget areas. | |
Version: 1.0 | |
License: GNU General Public License v2 or later | |
License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
Tags: light, gray, white, one-column, two-columns, right-sidebar, flexible-width, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, footer-sidebar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// primefactorsTests.h | |
// primefactorsTests | |
// | |
// Created by Marc Philipp on 04.08.12. | |
// Copyright (c) 2012 __MyCompanyName__. All rights reserved. | |
// | |
#import <SenTestingKit/SenTestingKit.h> |
NewerOlder